[cfe-commits] r136160 - /cfe/trunk/test/CodeGen/2008-01-04-WideBitfield.c
Eric Christopher
echristo at apple.com
Tue Jul 26 15:19:01 PDT 2011
Author: echristo
Date: Tue Jul 26 17:19:01 2011
New Revision: 136160
URL: http://llvm.org/viewvc/llvm-project?rev=136160&view=rev
Log:
Use unsigned long long for uint64_t. Fixes part of the windows buildbot.
Modified:
cfe/trunk/test/CodeGen/2008-01-04-WideBitfield.c
Modified: cfe/trunk/test/CodeGen/2008-01-04-WideBitfield.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2008-01-04-WideBitfield.c?rev=136160&r1=136159&r2=136160&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/2008-01-04-WideBitfield.c (original)
+++ cfe/trunk/test/CodeGen/2008-01-04-WideBitfield.c Tue Jul 26 17:19:01 2011
@@ -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;
More information about the cfe-commits
mailing list