diff options
author | Lang Hames <lhames@gmail.com> | 2015-02-21 20:44:36 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2015-02-21 20:44:36 +0000 |
commit | e738061c4900016238adf741e37dae099afe7c65 (patch) | |
tree | 5aa02ee105c792fd3959002f907ad99a1d39edc5 /llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp | |
parent | 60c5bbff29731d46df8aaf7c806993351ca4aa57 (diff) | |
download | bcm5719-llvm-e738061c4900016238adf741e37dae099afe7c65.tar.gz bcm5719-llvm-e738061c4900016238adf741e37dae099afe7c65.zip |
[Orc] Move Orc code into a namespace (llvm::orc), update Kaleidoscope code.
NFC.
llvm-svn: 230143
Diffstat (limited to 'llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp b/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp index 57616a54840..11deb4acbeb 100644 --- a/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp +++ b/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp @@ -8,6 +8,7 @@ using namespace llvm; namespace llvm { +namespace orc { GlobalVariable* createImplPointer(Function &F, const Twine &Name, Constant *Initializer) { @@ -106,4 +107,5 @@ FullyPartitionedModule fullyPartition(Module &M) { return MP; } -} +} // End namespace orc. +} // End namespace llvm. |