• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang -E -xassembler-with-cpp %s -o - 2>&1 | FileCheck %s
2
3// CHECK-NOT: warning: \u used with no following hex digits
4// CHECK: .word \u
5
6    .macro foo, u
7        .word \u
8    .endm
9