mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-03 19:15:30 +00:00
64af2512f1
Summary: This adds all of the AVR machine code tests. Reviewers: arsenm, kparzysz Subscribers: wdng, japaric Differential Revision: https://reviews.llvm.org/D26387 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286417 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
345 B
ArmAsm
15 lines
345 B
ArmAsm
; RUN: llvm-mc -triple avr -mattr=sram -show-encoding < %s | FileCheck %s
|
|
|
|
|
|
foo:
|
|
|
|
pop r31
|
|
pop r25
|
|
pop r5
|
|
pop r0
|
|
|
|
; CHECK: pop r31 ; encoding: [0xff,0x91]
|
|
; CHECK: pop r25 ; encoding: [0x9f,0x91]
|
|
; CHECK: pop r5 ; encoding: [0x5f,0x90]
|
|
; CHECK: pop r0 ; encoding: [0x0f,0x90]
|