brintos

brintos / llvm-project-archived public Read only

0
0
Text · 468 B · a90b496 Raw
30 lines · plain
1// RUN: not llvm-mc -triple i386 %s -o /dev/null 2>&1 | FileCheck %s2 3.if4.endif5 6// CHECK: error: unknown token in expression7// CHECK: .if8// CHECK:   ^9 10.ifeq 0, 311.endif12 13// CHECK:error: expected newline14// CHECK: .ifeq 0, 315// CHECK:        ^16 17.iflt "string1"18.endif19 20// CHECK: error: expected absolute expression21// CHECK: .iflt "string1"22// CHECK:       ^23 24.ifge test25.endif26 27// CHECK: error: expected absolute expression28// CHECK: .ifge test29// CHECK:       ^30