commit | b1d530515d166ddce976f47110f5a9ebb9363ce1 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Jun 20 05:33:29 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Jun 20 05:33:29 2008 +0000 |
tree | c2ce319126ac029a76420da8a42bb60b85bede2f | |
parent | 93d45aadeac6edefd60bea0c6b2964d3ad6aa13d [diff] [blame] |
Fix a warning, closing PR2452 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52529 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/FrontendC/2003-08-21-WideString.c b/test/FrontendC/2003-08-21-WideString.c index 75ff557..6984761 100644 --- a/test/FrontendC/2003-08-21-WideString.c +++ b/test/FrontendC/2003-08-21-WideString.c
@@ -1,7 +1,7 @@ // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null -// XFAIL: * -// See PR2452 + +#include <wchar.h> struct { - int *name; + wchar_t *name; } syms = { L"NUL" };