Partial fix for PR25912, see comment 13. Should fix the sanitizer bootstrap bot
[oota-llvm.git] / test / MC / COFF / ARM / directive-type-diagnostics.s
1 // RUN: not llvm-mc -triple arm-coff -filetype asm -o /dev/null %s 2>&1 | FileCheck %s
2 // RUN: not llvm-mc -triple armeb-coff -filetype asm -o /dev/null %s 2>&1 | FileCheck %s
3 // RUN: not llvm-mc -triple thumb-coff -filetype asm -o /dev/null %s 2>&1 | FileCheck %s
4 // RUN: not llvm-mc -triple thumbeb-coff -filetype asm -o /dev/null %s 2>&1 | FileCheck %s
5
6         .type symbol 32
7 // CHECK: error: expected STT_<TYPE_IN_UPPER_CASE>, '#<type>', '%<type>' or "<type>"
8 // CHECK: .type symbol 32
9 // CHECK:              ^
10