Change test to use uint64_t to support compiling for 32-bit architectures.

llvm-svn: 369034
This commit is contained in:
Adrian Prantl 2019-08-15 18:37:11 +00:00
parent 2ed4573e8f
commit 69ec60d821
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ int main (int argc, char const *argv[])
packed.c = 0x7112233;
struct LargePackedBits {
unsigned long a: 36;
unsigned long b: 36;
uint64_t a: 36;
uint64_t b: 36;
} __attribute__((packed));
struct LargePackedBits large_packed =