mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-20 02:28:23 +00:00
eb3cd5e822
llvm-svn: 51695
12 lines
229 B
C
12 lines
229 B
C
// RUN: %llvmgcc %s -S -o - -O | grep {and.*8589934591}
|
|
// PR1721
|
|
|
|
struct s {
|
|
unsigned long long u33: 33;
|
|
} a, b;
|
|
|
|
// This should turn into a real 33-bit add, not a 64-bit add.
|
|
_Bool test(void) {
|
|
return a.u33 + b.u33 != 0;
|
|
}
|