llvm-6502/test/FrontendC/2008-01-07-UnusualIntSize.c
Anton Korobeynikov 0b85642898 For PR1338: Rename test dirs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51695 91177308-0d34-0410-b5e6-96231b3b80d8
2008-05-29 19:17:15 +00:00

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;
}