blob: 91beaf3528de5780e5a4816fcd6c92e1f7dd3343 [file] [log] [blame]
Duncan Sands330e25c2009-02-10 20:44:15 +00001// RUN: %llvmgcc %s -S -o - -O | grep i33
Chris Lattner2b9d5dd2008-01-08 05:16:29 +00002// PR1721
3
4struct s {
5 unsigned long long u33: 33;
6} a, b;
7
8// This should turn into a real 33-bit add, not a 64-bit add.
9_Bool test(void) {
10 return a.u33 + b.u33 != 0;
11}