diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-04-22 03:04:17 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-04-22 03:04:17 +0000 |
commit | f58e376d233f1a9d2044f0a8a5152abe8dbf31a5 (patch) | |
tree | 55598d5e59776755d8b48e256d9081628d08aa4c /llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp | |
parent | 964daaaf192f76eccb4eb9fed849133c91b96bc5 (diff) | |
download | bcm5719-llvm-f58e376d233f1a9d2044f0a8a5152abe8dbf31a5.tar.gz bcm5719-llvm-f58e376d233f1a9d2044f0a8a5152abe8dbf31a5.zip |
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
definition below all the header #include lines. This updates most of the
miscellaneous other lib/... directories. A few left though.
llvm-svn: 206845
Diffstat (limited to 'llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp b/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp index de707a09d5e..5ecf3ac4432 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp @@ -11,7 +11,6 @@ // //===----------------------------------------------------------------------===// -#define DEBUG_TYPE "jit" #include "llvm-c/ExecutionEngine.h" #include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/ExecutionEngine/GenericValue.h" @@ -23,6 +22,8 @@ using namespace llvm; +#define DEBUG_TYPE "jit" + // Wrapping the C bindings types. DEFINE_SIMPLE_CONVERSION_FUNCTIONS(GenericValue, LLVMGenericValueRef) |