diff options
Diffstat (limited to 'test/CodeGen/string-literal-short-wstring.c')
-rw-r--r-- | test/CodeGen/string-literal-short-wstring.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CodeGen/string-literal-short-wstring.c b/test/CodeGen/string-literal-short-wstring.c index 309ffd33b2..88e4a1e400 100644 --- a/test/CodeGen/string-literal-short-wstring.c +++ b/test/CodeGen/string-literal-short-wstring.c @@ -29,15 +29,4 @@ int main() { // -4085 == 0xf00b // CHECK: store i16 -4085 wchar_t wc = L'\uF00B'; - - // Should take lower word of the 4byte UNC sequence. This does not match - // gcc. I don't understand what gcc does (it looks like it converts to utf16, - // then takes the second (!) utf16 word, swaps the lower two nibbles, and - // stores that?). - // CHECK: store i16 -4085 - wchar_t wd = L'\U0010F00B'; // has utf16 encoding dbc8 dcb0 - - // Should pick second character. (gcc: -9205) - // CHECK: store i16 -4085 - wchar_t we = L'\u1234\U0010F00B'; } |