forked from OSchip/llvm-project
Use unsigned long long for uint64_t. Fixes part of the windows buildbot.
llvm-svn: 136160
This commit is contained in:
parent
85e5156598
commit
aee57b4948
|
@ -1,6 +1,6 @@
|
|||
// RUN: %clang_cc1 -emit-llvm -o - %s
|
||||
// PR1386
|
||||
typedef unsigned long uint64_t;
|
||||
typedef unsigned long long uint64_t;
|
||||
struct X {
|
||||
unsigned char pad : 4;
|
||||
uint64_t a : 64;
|
||||
|
|
Loading…
Reference in New Issue