Switch test from wchar_t to char32_t
authorDavid Majnemer <david.majnemer@gmail.com>
Sun, 5 Apr 2015 05:42:02 +0000 (05:42 +0000)
committerDavid Majnemer <david.majnemer@gmail.com>
Sun, 5 Apr 2015 05:42:02 +0000 (05:42 +0000)
Windows has a 16-bit wchar_t, most Unix platforms have a 32-bit wchar_t.
Use a char32_t to keep the test's output stable.

llvm-svn: 234111

clang/test/SemaCXX/cxx11-ast-print.cpp

index 9770e45..27726de 100644 (file)
@@ -40,8 +40,8 @@ const char *p9 = 0x42e3F_fritz;
 const char *p10 = 3.300e+15_fritz;
 
 template <class C, C...> const char *operator"" _suffix();
-// CHECK: const char *PR23120 = operator "" _suffix<wchar_t, 66615>();
-const char *PR23120 = L"𐐷"_suffix;
+// CHECK: const char *PR23120 = operator "" _suffix<char32_t, 66615>();
+const char *PR23120 = U"𐐷"_suffix;
 
 // CHECK: ;
 ;