mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-13 14:46:15 +00:00
[ARM] Adds test for immediate encoding
The encoding of expressions as immediates wasn't correct, and was reported in PR23000. However, we have done some refactoring on how immediates are handled and now it seems the problem is fixed. This is a test just to make sure it won't regress again. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@276858 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5682750bf9
commit
f689bed10b
29
test/MC/ARM/sub-expr-imm.s
Normal file
29
test/MC/ARM/sub-expr-imm.s
Normal file
@ -0,0 +1,29 @@
|
||||
@ RUN: llvm-mc < %s -triple armv7-unknown-unknown -filetype=obj | llvm-objdump -d - | FileCheck %s
|
||||
|
||||
@ Test that makes sure both label and immediate expression
|
||||
@ are evaluated to the same values.
|
||||
|
||||
AES_Te:
|
||||
.word 1,2,3,4,5,6
|
||||
.word 1,2,3,4,5,6
|
||||
.word 1,2,3,4,5,6
|
||||
.word 1,2,3,4,5,6
|
||||
.word 1,2,3,4,5,6
|
||||
.word 1,2,3,4,5,6
|
||||
.word 1,2,3,4,5,6
|
||||
.word 1,2,3,4,5,6
|
||||
.word 1,2,3,4,5,6
|
||||
.word 1,2,3,4,5,6
|
||||
.word 1,2,3,4,5,6
|
||||
@ CHECK: AES_encrypt:
|
||||
AES_encrypt:
|
||||
@ CHECK: sub r10, r3, #264
|
||||
sub r10,r3,#(AES_encrypt-AES_Te)
|
||||
@ CHECK: sub r10, r3, #264
|
||||
sub r10,r3,#(6*11*4)
|
||||
Data:
|
||||
@ CHECK: 08 01 00 00
|
||||
.word (AES_encrypt-AES_Te)
|
||||
@ CHECK: 08 01 00 00
|
||||
.word (6*11*4)
|
||||
|
Loading…
x
Reference in New Issue
Block a user