commit | a3de6e9ab8fbd4c9462880dc5c138488b322efd0 | [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 | 3e64ff6832239f3293fe9016c341f0e8bd885820 [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" };