Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / 2009-05-28-const-typedef.c
blob3464fde685447c75da6a0af0d84c77d7b5175e1b
1 // RUN: %clang_cc1 -emit-llvm %s -o -
2 // PR4281
4 typedef struct {
5 int i;
6 } something;
8 typedef const something const_something;
10 something fail(void);
12 int
13 main(int argc, char *argv[])
15 const_something R = fail();