[llvm] r233506 - [Orc] Add missing inline keyword to the function introduced in r233504.

Lang Hames lhames at gmail.com
Sun Mar 29 15:07:07 PDT 2015


Author: lhames
Date: Sun Mar 29 17:07:07 2015
New Revision: 233506

URL: http://llvm.org/viewvc/llvm-project?rev=233506&view=rev
Log:
[Orc] Add missing inline keyword to the function introduced in r233504.

Modified:
    llvm/trunk/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h

Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h?rev=233506&r1=233505&r2=233506&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h Sun Mar 29 17:07:07 2015
@@ -196,7 +196,7 @@ private:
   TargetAddress ResolverBlockAddr;
 };
 
-Constant* createIRTypedAddress(FunctionType &FT, TargetAddress Addr) {
+inline Constant* createIRTypedAddress(FunctionType &FT, TargetAddress Addr) {
   Constant *AddrIntVal =
     ConstantInt::get(Type::getInt64Ty(FT.getContext()), Addr);
   Constant *AddrPtrVal =





More information about the llvm-commits mailing list