diff options
Diffstat (limited to 'clang/test/CodeGen')
-rw-r--r-- | clang/test/CodeGen/string-literal.c | 2 | ||||
-rw-r--r-- | clang/test/CodeGen/unsupported.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/clang/test/CodeGen/string-literal.c b/clang/test/CodeGen/string-literal.c index 104477ee12e..ea28f1a7cbc 100644 --- a/clang/test/CodeGen/string-literal.c +++ b/clang/test/CodeGen/string-literal.c @@ -2,4 +2,6 @@ int main() { char a[10] = "abc"; + + void *foo = L"AB"; } diff --git a/clang/test/CodeGen/unsupported.c b/clang/test/CodeGen/unsupported.c deleted file mode 100644 index c11f1d1ef9d..00000000000 --- a/clang/test/CodeGen/unsupported.c +++ /dev/null @@ -1,3 +0,0 @@ -// RUN: clang -verify -emit-llvm -o - %s - -void *x = L"foo"; // expected-error {{cannot compile this wide string yet}} |