1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01: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.

llvm-svn: 276858
This commit is contained in:
Renato Golin 2016-07-27 12:15:26 +00:00
parent 640855516d
commit c2c3be974e

View 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)