mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-23 21:45:46 -04:00

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
|