diff options
author | Eric Christopher <echristo@apple.com> | 2011-06-08 23:55:35 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-06-08 23:55:35 +0000 |
commit | 0713a9d8fc41cd24d73141dc5e34cd64ff14ac6e (patch) | |
tree | 690472716080b39cfe1402ab14a842954be65e6b /llvm/lib/Target/XCore/XCoreISelLowering.h | |
parent | ab8a66884950c2186af70e9242f8df5753257ae5 (diff) | |
download | bcm5719-llvm-0713a9d8fc41cd24d73141dc5e34cd64ff14ac6e.tar.gz bcm5719-llvm-0713a9d8fc41cd24d73141dc5e34cd64ff14ac6e.zip |
Add a parameter to CCState so that it can access the MachineFunction.
No functional change.
Part of PR6965
llvm-svn: 132763
Diffstat (limited to 'llvm/lib/Target/XCore/XCoreISelLowering.h')
-rw-r--r-- | llvm/lib/Target/XCore/XCoreISelLowering.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/XCore/XCoreISelLowering.h b/llvm/lib/Target/XCore/XCoreISelLowering.h index e98094814ea..a8d67d4ad21 100644 --- a/llvm/lib/Target/XCore/XCoreISelLowering.h +++ b/llvm/lib/Target/XCore/XCoreISelLowering.h @@ -191,7 +191,8 @@ namespace llvm { DebugLoc dl, SelectionDAG &DAG) const; virtual bool - CanLowerReturn(CallingConv::ID CallConv, bool isVarArg, + CanLowerReturn(CallingConv::ID CallConv, MachineFunction &MF, + bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &ArgsFlags, LLVMContext &Context) const; }; |