diff options
-rw-r--r-- | test/FrontendC/2003-08-21-WideString.c | 6 |
1 files changed, 3 insertions, 3 deletions
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" }; |