summaryrefslogtreecommitdiff
path: root/lib/Target/MSP430/MSP430ISelLowering.h
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-05-03 13:16:17 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-05-03 13:16:17 +0000
commite699d0f549151a2cca993c21407aea4a6eff7d3f (patch)
treee7b9f1cbbb2adfb2a5cd566adcef0f0913250933 /lib/Target/MSP430/MSP430ISelLowering.h
parente375a7c768f003b6f89a7e2e5a0e8c97a9a34868 (diff)
downloadllvm-e699d0f549151a2cca993c21407aea4a6eff7d3f.tar.gz
llvm-e699d0f549151a2cca993c21407aea4a6eff7d3f.tar.bz2
llvm-e699d0f549151a2cca993c21407aea4a6eff7d3f.tar.xz
Handle logical shift right (at least I hope so :) )
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70758 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MSP430/MSP430ISelLowering.h')
-rw-r--r--lib/Target/MSP430/MSP430ISelLowering.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/Target/MSP430/MSP430ISelLowering.h b/lib/Target/MSP430/MSP430ISelLowering.h
index 064cb67c24..2903903c26 100644
--- a/lib/Target/MSP430/MSP430ISelLowering.h
+++ b/lib/Target/MSP430/MSP430ISelLowering.h
@@ -30,6 +30,9 @@ namespace llvm {
/// Y = R{R,L}A X, rotate right (left) arithmetically
RRA, RLA,
+ /// Y = RRC X, rotate right via carry
+ RRC,
+
/// CALL/TAILCALL - These operations represent an abstract call
/// instruction, which includes a bunch of information.
CALL,
@@ -53,7 +56,10 @@ namespace llvm {
/// SELECT. Operand 0 and operand 1 are selection variable, operand 3 is
/// condition code and operand 4 is flag operand.
- SELECT
+ SELECT,
+
+ /// CLRC - Clear carry bit
+ CLRC
};
}