diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-05-18 00:21:46 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-05-18 00:21:46 +0000 |
commit | 75865923c9c688fad73abf8113338653c907229c (patch) | |
tree | fda83ecca8a85d2a71b208eb9b7f2721825cf6ed /llvm/lib/Target/ARM/ARMISelLowering.cpp | |
parent | 6ecb232b311f44a24ceca1f22bb00838dc3cc8f1 (diff) | |
download | bcm5719-llvm-75865923c9c688fad73abf8113338653c907229c.tar.gz bcm5719-llvm-75865923c9c688fad73abf8113338653c907229c.zip |
Add LLVMContext argument to getSetCCResultType
llvm-svn: 182180
Diffstat (limited to 'llvm/lib/Target/ARM/ARMISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index 432e3eefb1e..479fb777a47 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp @@ -1069,7 +1069,7 @@ const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const { } } -EVT ARMTargetLowering::getSetCCResultType(EVT VT) const { +EVT ARMTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const { if (!VT.isVector()) return getPointerTy(); return VT.changeVectorElementTypeToInteger(); } |