diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-05-17 21:50:01 +0000 | 
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-05-17 21:50:01 +0000 | 
| commit | 9f664c108396a70fd3ab984c1ddceeda305efbf9 (patch) | |
| tree | ed91f368ed557f90d51177a865771ab8336d281e /llvm/lib/Target/Mips/MipsISelLowering.cpp | |
| parent | 6d11b7cd7a7717e35dbb8195cab11044376fab49 (diff) | |
| download | bcm5719-llvm-9f664c108396a70fd3ab984c1ddceeda305efbf9.tar.gz bcm5719-llvm-9f664c108396a70fd3ab984c1ddceeda305efbf9.zip  | |
Target: change member from reference to pointer
This is a preliminary step to help ease the construction of CallLoweringInfo.
Changing the construction to a chained function pattern requires that the
parameter be nullable.  However, rather than copying the vector, save a pointer
rather than the reference to permit a late binding of the arguments.
llvm-svn: 209080
Diffstat (limited to 'llvm/lib/Target/Mips/MipsISelLowering.cpp')
| -rw-r--r-- | llvm/lib/Target/Mips/MipsISelLowering.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsISelLowering.cpp b/llvm/lib/Target/Mips/MipsISelLowering.cpp index f3a6910fa3c..7badc50780a 100644 --- a/llvm/lib/Target/Mips/MipsISelLowering.cpp +++ b/llvm/lib/Target/Mips/MipsISelLowering.cpp @@ -2329,7 +2329,7 @@ MipsTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,    MipsCCInfo.analyzeCallOperands(Outs, IsVarArg,                                   Subtarget->mipsSEUsesSoftFloat(), -                                 Callee.getNode(), CLI.Args); +                                 Callee.getNode(), CLI.getArgs());    // Get a count of how many bytes are to be pushed on the stack.    unsigned NextStackOffset = CCInfo.getNextStackOffset();  | 

