mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
0212e0df47
instructions to help disassembly. We also changed the output of the addressing modes to omit the '+' from the assembler syntax #+/-<imm> or +/-<Rm>. See, for example, A8.6.57/58/60. And modified test cases to not expect '+' in +reg or #+num. For example, ; CHECK: ldr.w r9, [r7, #28] llvm-svn: 98745
15 lines
423 B
LLVM
15 lines
423 B
LLVM
; RUN: llc < %s -mtriple=arm-linux-gnueabi | FileCheck %s
|
|
|
|
@.str = private constant [1 x i8] zeroinitializer, align 1
|
|
|
|
define arm_aapcscc void @g() {
|
|
entry:
|
|
;CHECK: [sp, #8]
|
|
;CHECK: [sp, #12]
|
|
;CHECK: [sp]
|
|
tail call arm_aapcscc void (i8*, ...)* @f(i8* getelementptr ([1 x i8]* @.str, i32 0, i32 0), i32 1, double 2.000000e+00, i32 3, double 4.000000e+00)
|
|
ret void
|
|
}
|
|
|
|
declare arm_aapcscc void @f(i8*, ...)
|