diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-05-05 23:06:52 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-05-05 23:06:52 +0000 |
commit | 84153c450a196143400b5fe985723e366a5c557e (patch) | |
tree | 0b5544d9afe88eb94e07c08a51b0923492e0551a /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | |
parent | 3fb91c0a0d740a286bab061d50088b9bfd5c1bdf (diff) | |
download | bcm5719-llvm-84153c450a196143400b5fe985723e366a5c557e.tar.gz bcm5719-llvm-84153c450a196143400b5fe985723e366a5c557e.zip |
[SelectionDAG] Pass explicit type to lowerCallOperands. NFC.
Summary:
Currently this does not change anything, but change will be used in a
later change to StatepointLowering.cpp
Reviewers: reames, atrick
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D9477
llvm-svn: 236553
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h index f812507fc09..f3e52538607 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h @@ -711,7 +711,7 @@ public: unsigned ArgIdx, unsigned NumArgs, SDValue Callee, - bool UseVoidTy = false, + Type *ReturnTy, MachineBasicBlock *LandingPad = nullptr, bool IsPatchPoint = false); |