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/PowerPC/PPCISelLowering.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/PowerPC/PPCISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index 870e3439a3d..8248c9475e0 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -1333,7 +1333,7 @@ SDValue PPCTargetLowering::LowerTRAMPOLINE(SDValue Op, SelectionDAG &DAG) { false, false, false, false, 0, CallingConv::C, false, /*isReturnValueUsed=*/true, DAG.getExternalSymbol("__trampoline_setup", PtrVT), - Args, DAG, dl); + Args, DAG, dl, DAG.GetOrdering(Chain.getNode())); SDValue Ops[] = { CallResult.first, CallResult.second }; |