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 | aa18176a76f0e31db7af3973c7ca6072f1c15318 (patch) | |
tree | 56d988d4a3aa501f13156292ecb9fb21ef80e11e /include | |
parent | 097e64bcd3ad3f312f6d2cc1bb7f0b616f60bf03 (diff) | |
download | external_llvm-aa18176a76f0e31db7af3973c7ca6072f1c15318.zip external_llvm-aa18176a76f0e31db7af3973c7ca6072f1c15318.tar.gz external_llvm-aa18176a76f0e31db7af3973c7ca6072f1c15318.tar.bz2 |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91880 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index 939322c..0a66d80 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -1136,7 +1136,7 @@ public: bool isVarArg, bool isInreg, unsigned NumFixedArgs, CallingConv::ID CallConv, bool isTailCall, bool isReturnValueUsed, SDValue Callee, ArgListTy &Args, - SelectionDAG &DAG, DebugLoc dl); + SelectionDAG &DAG, DebugLoc dl, unsigned Order); /// LowerCall - This hook must be implemented to lower calls into the /// the specified DAG. The outgoing arguments to the call are described |