diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-26 23:01:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-26 23:01:51 +0000 |
commit | dbb1ecc32ca122b07b7c98fd0a8f6f53985adacc (patch) | |
tree | 7bd1b69e6ce297e213ade3d86ea61a070261489e /test/CodeGen/string-literal.c | |
parent | e8e260039346695beaa15af3e64ba38a64a1c30b (diff) |
fix some sema problems with wide strings and hook up basic codegen for them.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65582 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/string-literal.c')
-rw-r--r-- | test/CodeGen/string-literal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/CodeGen/string-literal.c b/test/CodeGen/string-literal.c index 104477ee12..ea28f1a7cb 100644 --- a/test/CodeGen/string-literal.c +++ b/test/CodeGen/string-literal.c @@ -2,4 +2,6 @@ int main() { char a[10] = "abc"; + + void *foo = L"AB"; } |