forked from OSchip/llvm-project
Change test to use uint64_t to support compiling for 32-bit architectures.
llvm-svn: 369034
This commit is contained in:
parent
2ed4573e8f
commit
69ec60d821
|
@ -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 =
|
||||
|
|
Loading…
Reference in New Issue