From: Eric Christopher Date: Tue, 26 Jul 2011 22:19:01 +0000 (+0000) Subject: Use unsigned long long for uint64_t. Fixes part of the windows buildbot. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=54562ec9471222010cded42de16bc23286d873cd;p=clang 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 --- 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;