mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
042547700a
the body does not use them and it appears the body has positional parameters. This can cause unexpected results as in the added test case. As the darwin version of gas(1) which only supported positional parameters, happened to ignore the named parameters. Now that we want to support both styles of macros we issue a warning in this specific case. rdar://12861644 llvm-svn: 173199
15 lines
497 B
ArmAsm
15 lines
497 B
ArmAsm
// RUN: llvm-mc -triple x86_64-apple-darwin10 %s 2> %t.err > %t
|
|
// RUN: FileCheck --check-prefix=CHECK-OUTPUT < %t %s
|
|
// RUN: FileCheck --check-prefix=CHECK-ERROR < %t.err %s
|
|
|
|
.macro test_macro reg1, reg2
|
|
mov $1, %eax
|
|
mov $2, %eax
|
|
.endmacro
|
|
test_macro %ebx, %ecx
|
|
|
|
// CHECK-ERROR: 5:1: warning: macro defined with named parameters which are not used in macro body, possible positional parameter found in body which will have no effect
|
|
|
|
// CHECK-OUTPUT: movl $1, %eax
|
|
// CHECK-OUTPUT: movl $2, %eax
|