diff options
author | Manman Ren <mren@apple.com> | 2012-11-01 23:49:58 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2012-11-01 23:49:58 +0000 |
commit | 3d5af279b1790620c9554cf216903968643055cb (patch) | |
tree | 29f1feaf0e6c6bbd5815a3b3cf034f1e5a908d0f /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 4cbf8f3d4b95b7f9d15a889c9de41de79632433b (diff) | |
download | bcm5719-llvm-3d5af279b1790620c9554cf216903968643055cb.tar.gz bcm5719-llvm-3d5af279b1790620c9554cf216903968643055cb.zip |
OutputArg: added an index of the original argument to match the change to
InputArg in r165616.
This will enable us to get the actual type for both InputArg and OutputArg.
rdar://9932559
llvm-svn: 167265
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 5abc55ba8e2..49f55e2fc60 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -1032,7 +1032,7 @@ void llvm::GetReturnInfo(Type* ReturnType, Attributes attr, Flags.setZExt(); for (unsigned i = 0; i < NumParts; ++i) - Outs.push_back(ISD::OutputArg(Flags, PartVT, /*isFixed=*/true)); + Outs.push_back(ISD::OutputArg(Flags, PartVT, /*isFixed=*/true, 0, 0)); } } |