blob: bf3130bbeeb517ca3906c258de5e72553503546a [file] [log] [blame]
Chris Lattner50424532005-02-27 18:19:26 +00001// RUN: %llvmgcc -xc %s -S -o - | grep 'ctor_.* constant '
2
3// The synthetic global made by the CFE for big initializer should be marked
4// constant.
5
6void bar();
7void foo() {
8 char Blah[] = "asdlfkajsdlfkajsd;lfkajds;lfkjasd;flkajsd;lkfja;sdlkfjasd";
9 bar(Blah);
10}