diff options
Diffstat (limited to 'test/FrontendC/2008-01-07-UnusualIntSize.c')
-rw-r--r-- | test/FrontendC/2008-01-07-UnusualIntSize.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/FrontendC/2008-01-07-UnusualIntSize.c b/test/FrontendC/2008-01-07-UnusualIntSize.c deleted file mode 100644 index 91beaf3528..0000000000 --- a/test/FrontendC/2008-01-07-UnusualIntSize.c +++ /dev/null @@ -1,11 +0,0 @@ -// RUN: %llvmgcc %s -S -o - -O | grep i33 -// 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; -} |