diff options
Diffstat (limited to 'test/FrontendC/2007-09-05-ConstCtor.c')
-rw-r--r-- | test/FrontendC/2007-09-05-ConstCtor.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/FrontendC/2007-09-05-ConstCtor.c b/test/FrontendC/2007-09-05-ConstCtor.c deleted file mode 100644 index adae4a6..0000000 --- a/test/FrontendC/2007-09-05-ConstCtor.c +++ /dev/null @@ -1,14 +0,0 @@ -// RUN: %llvmgcc -xc -Os -S %s -o /dev/null -// PR1641 - -struct A { - unsigned long l; -}; - -void bar(struct A *a); - -void bork() { - const unsigned long vcgt = 1234; - struct A a = { vcgt }; - bar(&a); -} |