aboutsummaryrefslogtreecommitdiffstats
path: root/llvm_runtime.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2012-10-16 21:08:52 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2012-10-17 09:11:03 +0200
commit69e7dfe5f4fcb0ae5be697ae7d87c761f7f77498 (patch)
tree51c7112c4ab806d3edc8c7f7eb7673bcd234889b /llvm_runtime.cpp
parent7efad31f6739b5a9284b17493516c404006372fa (diff)
Convert some more methods to the new calling convention
Change-Id: Ieeeb86d94d1094213430a1b4afa0d3a91785ac45 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'llvm_runtime.cpp')
-rw-r--r--llvm_runtime.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm_runtime.cpp b/llvm_runtime.cpp
index fb7e3f629a..713968d5cd 100644
--- a/llvm_runtime.cpp
+++ b/llvm_runtime.cpp
@@ -304,22 +304,22 @@ void __qmljs_llvm_get_this_object(Context *ctx, Value *result)
void __qmljs_llvm_delete_subscript(Context *ctx, Value *result, Value *base, Value *index)
{
- __qmljs_delete_subscript(ctx, result, base, index);
+ *result = __qmljs_delete_subscript(ctx, *base, *index);
}
void __qmljs_llvm_delete_member(Context *ctx, Value *result, Value *base, String *name)
{
- __qmljs_delete_member(ctx, result, base, name);
+ *result = __qmljs_delete_member(ctx, *base, name);
}
void __qmljs_llvm_delete_property(Context *ctx, Value *result, String *name)
{
- __qmljs_delete_property(ctx, result, name);
+ *result = __qmljs_delete_property(ctx, name);
}
void __qmljs_llvm_delete_value(Context *ctx, Value *result, Value *value)
{
- __qmljs_delete_value(ctx, result, value);
+ *result = __qmljs_delete_value(ctx, *value);
}
void __qmljs_llvm_init_this_object(Context *ctx)