diff options
| author | Owen Anderson <resistor@mac.com> | 2009-08-10 18:56:59 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2009-08-10 18:56:59 +0000 |
| commit | 27bfb67d9ac01e9bf33a7b105c7fe842525b7582 (patch) | |
| tree | 338bb377f6e2a02c964d4ee6f38a91a1464bbd98 /lib/Target/PIC16/PIC16ISelLowering.cpp | |
| parent | 0f10cbfdb0460441b293ccc3b828668164c19fde (diff) | |
| download | external_llvm-27bfb67d9ac01e9bf33a7b105c7fe842525b7582.zip external_llvm-27bfb67d9ac01e9bf33a7b105c7fe842525b7582.tar.gz external_llvm-27bfb67d9ac01e9bf33a7b105c7fe842525b7582.tar.bz2 | |
Start moving TargetLowering away from using full MVTs and towards SimpleValueType, which will simplify the privatization of IntegerType in the future.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78584 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PIC16/PIC16ISelLowering.cpp')
| -rw-r--r-- | lib/Target/PIC16/PIC16ISelLowering.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/PIC16/PIC16ISelLowering.cpp b/lib/Target/PIC16/PIC16ISelLowering.cpp index ec9a52f..a98604b 100644 --- a/lib/Target/PIC16/PIC16ISelLowering.cpp +++ b/lib/Target/PIC16/PIC16ISelLowering.cpp @@ -365,7 +365,8 @@ static void PopulateResults(SDValue N, SmallVectorImpl<SDValue>&Results) { Results.push_back(N); } -MVT PIC16TargetLowering::getSetCCResultType(MVT ValType) const { +MVT::SimpleValueType +PIC16TargetLowering::getSetCCResultType(MVT ValType) const { return MVT::i8; } |
