diff options
Diffstat (limited to 'llvm/lib/ExecutionEngine/Orc/OrcTargetSupport.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Orc/OrcTargetSupport.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Orc/OrcTargetSupport.cpp b/llvm/lib/ExecutionEngine/Orc/OrcTargetSupport.cpp index e71fc65ce24..b5dda8e4ee5 100644 --- a/llvm/lib/ExecutionEngine/Orc/OrcTargetSupport.cpp +++ b/llvm/lib/ExecutionEngine/Orc/OrcTargetSupport.cpp @@ -2,7 +2,7 @@ #include "llvm/ExecutionEngine/Orc/OrcTargetSupport.h" #include <array> -using namespace llvm; +using namespace llvm::orc; namespace { @@ -47,6 +47,7 @@ uint64_t executeCompileCallback(JITCompileCallbackManagerBase<TargetT> *JCBM, } namespace llvm { +namespace orc { const char* OrcX86_64::ResolverBlockName = "orc_resolver_block"; @@ -123,4 +124,5 @@ OrcX86_64::insertCompileCallbackTrampolines(Module &M, return GetLabelName; } -} +} // End namespace orc. +} // End namespace llvm. |