]> granicus.if.org Git - clang/commitdiff
Use unsigned long long for uint64_t. Fixes part of the windows buildbot.
authorEric Christopher <echristo@apple.com>
Tue, 26 Jul 2011 22:19:01 +0000 (22:19 +0000)
committerEric Christopher <echristo@apple.com>
Tue, 26 Jul 2011 22:19:01 +0000 (22:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136160 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/2008-01-04-WideBitfield.c

index ab50940c384704e34c2ad7deb502285ca9e93451..e1c7a38a12e6f7e72a475baa8113b7a4b372915d 100644 (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;