mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
6faa0c3ed4
Summary: This adds all of the AVR machine code tests. Reviewers: arsenm, kparzysz Subscribers: wdng, japaric Differential Revision: https://reviews.llvm.org/D26387 llvm-svn: 286417
15 lines
342 B
ArmAsm
15 lines
342 B
ArmAsm
; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s
|
|
|
|
|
|
foo:
|
|
|
|
dec r26
|
|
dec r3
|
|
dec r24
|
|
dec r20
|
|
|
|
; CHECK: dec r26 ; encoding: [0xaa,0x95]
|
|
; CHECK: dec r3 ; encoding: [0x3a,0x94]
|
|
; CHECK: dec r24 ; encoding: [0x8a,0x95]
|
|
; CHECK: dec r20 ; encoding: [0x4a,0x95]
|