diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-12-22 02:10:19 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-12-22 02:10:19 +0000 |
commit | 919b7aab2ee7e58d25930a915116c048be4f820f (patch) | |
tree | 5c8a85377abde16ab7a06ce8c5c59b921bc75654 /llvm/lib/Target/ARM/ARMISelLowering.cpp | |
parent | 2f9443f422fab429b75e943ed556b2caf7e3520f (diff) | |
download | bcm5719-llvm-919b7aab2ee7e58d25930a915116c048be4f820f.tar.gz bcm5719-llvm-919b7aab2ee7e58d25930a915116c048be4f820f.zip |
Add more plumbing. This time in the LowerArguments and "get" functions which
return partial registers. This affected the back-end lowering code some.
Also patch up some places I missed before in the "get" functions.
llvm-svn: 91880
Diffstat (limited to 'llvm/lib/Target/ARM/ARMISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index 04ea541b395..334baaed00f 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp @@ -1273,7 +1273,8 @@ ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA, LowerCallTo(Chain, (const Type *) Type::getInt32Ty(*DAG.getContext()), false, false, false, false, 0, CallingConv::C, false, /*isReturnValueUsed=*/true, - DAG.getExternalSymbol("__tls_get_addr", PtrVT), Args, DAG, dl); + DAG.getExternalSymbol("__tls_get_addr", PtrVT), Args, DAG, dl, + DAG.GetOrdering(Chain.getNode())); return CallResult.first; } |