diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:49:41 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:49:41 +0000 |
| commit | 45b533945f0851ec234ca846e1af5ee1e4df0b6e (patch) | |
| tree | 0a5b74c0b9ca73aded34df95c91fcaf3815230d8 /test/CodeGen/string-literal.c | |
| parent | 7e86edd64bfae4e324224452e4ea879b3371a4bd (diff) | |
Vendor import of clang trunk r256633:vendor/clang/clang-trunk-r256633
Diffstat (limited to 'test/CodeGen/string-literal.c')
| -rw-r--r-- | test/CodeGen/string-literal.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/CodeGen/string-literal.c b/test/CodeGen/string-literal.c index 8bc97f1887e9..c46018743620 100644 --- a/test/CodeGen/string-literal.c +++ b/test/CodeGen/string-literal.c @@ -102,6 +102,30 @@ def)" "ghi"; ??= def)"; + // CHECK-CXX11: private unnamed_addr constant [13 x i8] c"def\5C\0A??=\0Aabc\00", align 1 + const char *s = u8R\ +"(def\ +??= +abc)"; + + // CHECK-CXX11: private unnamed_addr constant [13 x i16] [i16 97, i16 98, i16 99, i16 92, i16 10, i16 63, i16 63, i16 61, i16 10, i16 100, i16 101, i16 102, i16 0], align 2 + const char16_t *t = uR\ +"(abc\ +??= +def)"; + + // CHECK-CXX11: private unnamed_addr constant [13 x i32] [i32 97, i32 98, i32 99, i32 92, i32 10, i32 63, i32 63, i32 61, i32 10, i32 100, i32 101, i32 102, i32 0], align 4 + const char32_t *u = UR\ +"(abc\ +??= +def)"; + + // CHECK-CXX11: private unnamed_addr constant [13 x i32] [i32 100, i32 101, i32 102, i32 92, i32 10, i32 63, i32 63, i32 61, i32 10, i32 97, i32 98, i32 99, i32 0], align 4 + const wchar_t *v = LR\ +"(def\ +??= +abc)"; + #endif #endif } |
