aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-07-26 22:19:01 +0000
committerEric Christopher <echristo@apple.com>2011-07-26 22:19:01 +0000
commit54562ec9471222010cded42de16bc23286d873cd (patch)
tree1260ae4c27b9c588321210d8f4cfd5e4cde3f6af
parent3883e66cfd55de70d89831cf26f9ae53931d11d3 (diff)
Use unsigned long long for uint64_t. Fixes part of the windows buildbot.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136160 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/2008-01-04-WideBitfield.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/2008-01-04-WideBitfield.c b/test/CodeGen/2008-01-04-WideBitfield.c
index ab50940c38..e1c7a38a12 100644
--- a/test/CodeGen/2008-01-04-WideBitfield.c
+++ b/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;