aboutsummaryrefslogtreecommitdiffstats
path: root/src/v4/llvm_runtime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/v4/llvm_runtime.cpp')
-rw-r--r--src/v4/llvm_runtime.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/v4/llvm_runtime.cpp b/src/v4/llvm_runtime.cpp
index c3aede7826..c0c5415ef4 100644
--- a/src/v4/llvm_runtime.cpp
+++ b/src/v4/llvm_runtime.cpp
@@ -474,23 +474,11 @@ void __qmljs_llvm_throw(ExecutionContext *context, Value *value)
__qmljs_throw(context, *value);
}
-void __qmljs_llvm_create_exception_handler(ExecutionContext *context, Value *result)
-{
- // ### FIXME.
- __qmljs_create_exception_handler(context);
- *result = Value::undefinedValue();
-}
-
void __qmljs_llvm_delete_exception_handler(ExecutionContext *context)
{
// ### FIXME.
}
-void __qmljs_llvm_get_exception(ExecutionContext *context, Value *result)
-{
- __qmljs_get_exception(context, result);
-}
-
void __qmljs_llvm_foreach_iterator_object(ExecutionContext *context, Value *result, Value *in)
{
__qmljs_foreach_iterator_object(context, result, *in);