diff options
Diffstat (limited to 'clang/test/Lexer/asm-preproc-no-unicode.s')
| -rw-r--r-- | clang/test/Lexer/asm-preproc-no-unicode.s | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/Lexer/asm-preproc-no-unicode.s b/clang/test/Lexer/asm-preproc-no-unicode.s new file mode 100644 index 00000000000..d194a52fec3 --- /dev/null +++ b/clang/test/Lexer/asm-preproc-no-unicode.s @@ -0,0 +1,8 @@ +// RUN: %clang -E -xassembler-with-cpp %s -o - 2>&1 | FileCheck %s + +// CHECK-NOT: warning: \u used with no following hex digits +// CHECK: .word \u + + .macro foo, u + .word \u + .endm |

