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: llvm-mc -filetype=obj -triple=i386-unknown-elf -defsym a=7 -defsym b=11 %s | llvm-objdump -t - | FileCheck %s
|
|
|
|
.ifndef a
|
|
.err
|
|
.endif
|
|
|
|
.if a<>7
|
|
.err
|
|
.endif
|
|
|
|
.ifndef b
|
|
.err
|
|
.endif
|
|
|
|
.if b<>11
|
|
.err
|
|
.endif
|
|
|
|
# CHECK: 00000007 *ABS* 00000000 a
|
|
# CHECK: 0000000b *ABS* 00000000 b |