[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MC / AsmParser / if-diagnostics.s
blobd102a5686d9804b41b32daea1cc546a8400b031e
1 // RUN: not llvm-mc -triple i386 %s -o /dev/null 2>&1 | FileCheck %s
3 .if
4 .endif
6 // CHECK: error: unknown token in expression
7 // CHECK: .if
8 // CHECK: ^
10 .ifeq 0, 3
11 .endif
13 // CHECK:error: unexpected token in '.if' directive
14 // CHECK: .ifeq 0, 3
15 // CHECK: ^
17 .iflt "string1"
18 .endif
20 // CHECK: error: expected absolute expression
21 // CHECK: .iflt "string1"
22 // CHECK: ^
24 .ifge test
25 .endif
27 // CHECK: error: expected absolute expression
28 // CHECK: .ifge test
29 // CHECK: ^