brintos

brintos / llvm-project-archived public Read only

0
0
Text · 488 B · bd7dc3b Raw
33 lines · plain
1# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s2 3# CHECK-NOT: .byte 04# CHECK: .byte 15.ifnes "foo space", "foo space"6	.byte 07.else8	.byte 19.endif10 11# CHECK-NOT: .byte 012# CHECK: .byte 113.ifnes "unequal", "unEqual"14	.byte 115.else16	.byte 017.endif18 19# CHECK-NOT: .byte 020# CHECK: .byte 121.ifnes "equal", "equal" ; .byte 0 ; .else ; .byte 1 ; .endif22 23.if 024  .ifnes "alpha", "alpha"25    .byte 226  .else27    .byte 328  .endif29.endif30 31// CHECK-NOT: .byte 232// CHECK-NOT: .byte 333