[ARM] Better OR's for MVE compares
[llvm-core.git] / test / TableGen / prep-diag2.td
blob741026b9c8a2d6415ac0cf6a28fa6c8db25824c1
1 // RUN: not llvm-tblgen -DDIAG1 -I %p %s 2>&1 | FileCheck --check-prefixes=DIAG1 %s
2 // RUN: not llvm-tblgen -I %p %s 2>&1 | FileCheck --check-prefixes=DIAG2 %s
4 #ifdef DIAG1
5 // DIAG1: error: Only comments are supported after #else
7 // Invalid #else below should be detected even if DIAG1 is not defined.
8 // DIAG2: error: Only comments are supported after #else
9 #ifdef DIAG2//DIAG2
10 #else/*
11 */class C;
12 #endif
13 #endif // DIAG1