diff options
Diffstat (limited to 'llvm/test/MC/AVR/inst-eor.s')
-rw-r--r-- | llvm/test/MC/AVR/inst-eor.s | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/MC/AVR/inst-eor.s b/llvm/test/MC/AVR/inst-eor.s new file mode 100644 index 00000000000..c15820d2ede --- /dev/null +++ b/llvm/test/MC/AVR/inst-eor.s @@ -0,0 +1,14 @@ +; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s + + +foo: + + eor r0, r15 + eor r15, r0 + eor r16, r31 + eor r31, r16 + +; CHECK: eor r0, r15 ; encoding: [0x0f,0x24] +; CHECK: eor r15, r0 ; encoding: [0xf0,0x24] +; CHECK: eor r16, r31 ; encoding: [0x0f,0x27] +; CHECK: eor r31, r16 ; encoding: [0xf0,0x27] |