diff options
author | Eric Christopher <echristo@apple.com> | 2011-07-26 22:19:01 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-07-26 22:19:01 +0000 |
commit | aee57b4948b426cb7cdb18cfcc2caed5570fe23a (patch) | |
tree | 60b61043fbeb61fd73d21668bce1194125d74a9d /clang/test | |
parent | 85e5156598b1bbad0ae41cf4d0d5b845dd655ffd (diff) | |
download | bcm5719-llvm-aee57b4948b426cb7cdb18cfcc2caed5570fe23a.tar.gz bcm5719-llvm-aee57b4948b426cb7cdb18cfcc2caed5570fe23a.zip |
Use unsigned long long for uint64_t. Fixes part of the windows buildbot.
llvm-svn: 136160
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGen/2008-01-04-WideBitfield.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/2008-01-04-WideBitfield.c b/clang/test/CodeGen/2008-01-04-WideBitfield.c index ab50940c384..e1c7a38a12e 100644 --- a/clang/test/CodeGen/2008-01-04-WideBitfield.c +++ b/clang/test/CodeGen/2008-01-04-WideBitfield.c @@ -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; |