changeset 26004:94fecd437d9c

* pt-eval.cc: Fix call to JIT evaluate function.
author John W. Eaton <jwe@octave.org>
date Thu, 01 Nov 2018 14:38:27 -0400
parents c60a5493688a
children 68350e746ff2
files libinterp/parse-tree/pt-eval.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/parse-tree/pt-eval.cc	Thu Nov 01 14:37:10 2018 -0400
+++ b/libinterp/parse-tree/pt-eval.cc	Thu Nov 01 14:38:27 2018 -0400
@@ -1424,7 +1424,7 @@
 
 #if defined (HAVE_LLVM)
     if (user_function.is_special_expr ()
-        && tree_jit::execute (*this, args, retval))
+        && tree_jit::execute (user_function, args, retval))
       return retval;
 #endif