mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-02 18:58:15 +00:00
19ae1175ae
Various tests had sprung up over the years which had --check-prefix=ABC on the RUN line, but "CHECK-ABC:" later on. This happened to work before, but was strictly incorrect. FileCheck is getting stricter soon though. Patch by Ron Ofir. llvm-svn: 188174
8 lines
226 B
C
8 lines
226 B
C
// RUN: %clang_cc1 -dump-tokens %s 2>&1 | FileCheck %s
|
|
// RUN: %clang_cc1 -dump-tokens -x assembler-with-cpp %s 2>&1 | FileCheck %s --check-prefix=CHECK-ASM
|
|
// PR3808
|
|
|
|
// CHECK: identifier '$A'
|
|
// CHECK-ASM: identifier 'A'
|
|
$A
|