Use unsigned long long for uint64_t. Fixes part of the windows buildbot.

llvm-svn: 136160
This commit is contained in:
Eric Christopher 2011-07-26 22:19:01 +00:00
parent 85e5156598
commit aee57b4948
1 changed files with 1 additions and 1 deletions

View File

@ -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;