Add support for C++0x unicode string and character literals, from Craig Topper!


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136210 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Lexer/wchar.c b/test/Lexer/wchar.c
index ac82c1f..648a38e 100644
--- a/test/Lexer/wchar.c
+++ b/test/Lexer/wchar.c
@@ -5,8 +5,8 @@
 
   (void)L'\U00010000';  // expected-warning {{character unicode escape sequence too long for its type}}
 
-  (void)L'ab';  // expected-warning {{extraneous characters in wide character constant ignored}}
+  (void)L'ab';  // expected-warning {{extraneous characters in character constant ignored}}
 
-  (void)L'a\u1000';  // expected-warning {{extraneous characters in wide character constant ignored}}
+  (void)L'a\u1000';  // expected-warning {{extraneous characters in character constant ignored}}
 }