[PATCH] D35103: Expand clang-interpreter with example of throwing in and from the JIT for Windows64.

Martell Malone via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Jul 13 13:26:38 PDT 2017


martell added a comment.

Just 2 small nits.



================
Comment at: examples/clang-interpreter/main.cpp:165
+      llvm::errs() << "'main' function not found in module.\n";
+      return 255;
+    }
----------------
255 -> Res ?


================
Comment at: examples/clang-interpreter/main.cpp:173
+      llvm::errs() << "unable to make execution engine: " << Error << "\n";
+      return 255;
+    }
----------------
255 -> Res


https://reviews.llvm.org/D35103





More information about the cfe-commits mailing list