diff libinterp/octave-value/ov-usr-fcn.h @ 24239:51e408a7d38f

jit: Move everything inside the octave namespace * libinterp/octave-value/ov-builtin.cc: Move everything inside the octave namespace * libinterp/octave-value/ov-builtin.h: Idem. * libinterp/octave-value/ov-usr-fcn.h: Idem. * libinterp/parse-tree/jit-ir.cc: Idem. * libinterp/parse-tree/jit-ir.h: Idem. * libinterp/parse-tree/jit-typeinfo.cc: Idem. * libinterp/parse-tree/jit-typeinfo.h: Idem. * libinterp/parse-tree/jit-util.cc: Idem. * libinterp/parse-tree/jit-util.h: Idem. * libinterp/parse-tree/pt-jit.cc: Idem. * libinterp/parse-tree/pt-jit.h: Idem. * libinterp/parse-tree/pt-loop.h: Idem. * libinterp/template-inst/Array-jit.cc: Idem.
author Julien Bect <jbect@users.sourceforge.net>
date Sun, 15 Oct 2017 21:08:02 +0200
parents 21915520ac7b
children bc3819b7cca1
line wrap: on
line diff
--- a/libinterp/octave-value/ov-usr-fcn.h	Sat Oct 07 09:59:16 2017 +0200
+++ b/libinterp/octave-value/ov-usr-fcn.h	Sun Oct 15 21:08:02 2017 +0200
@@ -49,11 +49,11 @@
   class tree_evaluator;
   class tree_expression;
   class tree_walker;
-}
+#if defined (HAVE_LLVM)
+  class jit_function_info;
+#endif
 
-#if defined (HAVE_LLVM)
-class jit_function_info;
-#endif
+}
 
 class
 octave_user_code : public octave_function
@@ -401,9 +401,9 @@
   void accept (octave::tree_walker& tw);
 
 #if defined (HAVE_LLVM)
-  jit_function_info * get_info (void) { return jit_info; }
+  octave::jit_function_info * get_info (void) { return jit_info; }
 
-  void stash_info (jit_function_info *info) { jit_info = info; }
+  void stash_info (octave::jit_function_info *info) { jit_info = info; }
 #endif
 
   octave_value dump (void) const;
@@ -491,7 +491,7 @@
   octave::symbol_table::scope *parent_scope;
 
 #if defined (HAVE_LLVM)
-  jit_function_info *jit_info;
+  octave::jit_function_info *jit_info;
 #endif
 
   void maybe_relocate_end_internal (void);