You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: %clang -S %s -o - | FileCheck %s
|
|
.macro my_macro, trace=1, uaccess=1
|
|
.if \uaccess
|
|
// CHECK: .if \uaccess
|
|
// CHECK-NOT: .if 곎ss
|
|
// CHECK: my_macro trace=1
|
|
my_macro trace=1
|
|
.endif
|
|
.endm
|
|
|
|
foo:
|
|
my_macro trace=0
|