mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-08 14:49:38 +00:00
2afb63c001
We translate these into #define directives; to preserve gcc-compatible semantics (where the expanded macro includes the backslash), we add an extra "\\\n" to the end of the synthesized "#define". <rdar://problem/14810220> llvm-svn: 189511
4 lines
88 B
C
4 lines
88 B
C
// RUN: %clang_cc1 -E %s -Dfoo='bar\' | FileCheck %s
|
|
// CHECK: TTA bar\ TTB
|
|
TTA foo TTB
|