commit | 225ed7069caae9ece32d8bd3d15c6e41e21cc04b | [log] [tgz] |
---|---|---|
author | Matt Arsenault <Matthew.Arsenault@amd.com> | Sat May 18 00:21:46 2013 +0000 |
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | Sat May 18 00:21:46 2013 +0000 |
tree | 228fdf5d71f34137d0a90abbae6bc5aa1d7f1d9d | |
parent | bab06ba696694e7f62f964af7ee5290a13f78340 [diff] [blame] |
Add LLVMContext argument to getSetCCResultType git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182180 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index 432e3ee..479fb77 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp
@@ -1069,7 +1069,7 @@ } } -EVT ARMTargetLowering::getSetCCResultType(EVT VT) const { +EVT ARMTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const { if (!VT.isVector()) return getPointerTy(); return VT.changeVectorElementTypeToInteger(); }