Use our new snazzy stdint.h to make a testcase 64-bit portable.

llvm-svn: 63985
This commit is contained in:
Sebastian Redl 2009-02-07 00:23:52 +00:00
parent 01af63beb4
commit 1d8cb2e0d0
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
// RUN: clang %s -verify -fsyntax-only
#include <stdint.h>
typedef void (* fp)(void);
void foo(void);
@ -104,5 +106,5 @@ struct foo2 {
};
struct foo2 bar2[] = {
{ (int)bbb }
{ (intptr_t)bbb }
};