forked from OSchip/llvm-project
Use our new snazzy stdint.h to make a testcase 64-bit portable.
llvm-svn: 63985
This commit is contained in:
parent
01af63beb4
commit
1d8cb2e0d0
|
@ -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 }
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue