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 | 225ed7069caae9ece32d8bd3d15c6e41e21cc04b (patch) | |
tree | 228fdf5d71f34137d0a90abbae6bc5aa1d7f1d9d /include/llvm/Target/TargetLowering.h | |
parent | bab06ba696694e7f62f964af7ee5290a13f78340 (diff) | |
download | external_llvm-225ed7069caae9ece32d8bd3d15c6e41e21cc04b.zip external_llvm-225ed7069caae9ece32d8bd3d15c6e41e21cc04b.tar.gz external_llvm-225ed7069caae9ece32d8bd3d15c6e41e21cc04b.tar.bz2 |
Add LLVMContext argument to getSetCCResultType
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182180 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetLowering.h')
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index d5c9ebe..2bad48b 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -198,7 +198,7 @@ public: /// the condition operand of SELECT and BRCOND nodes. In the case of /// BRCOND the argument passed is MVT::Other since there are no other /// operands to get a type hint from. - virtual EVT getSetCCResultType(EVT VT) const; + virtual EVT getSetCCResultType(LLVMContext &Context, EVT VT) const; /// getCmpLibcallReturnType - Return the ValueType for comparison /// libcalls. Comparions libcalls include floating point comparion calls, |