You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
316 B

// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
// PR10414
// The synthetic global made by the CFE for big initializer should be marked
// constant.
void bar();
void foo() {
// CHECK: private unnamed_addr constant
char Blah[] = "asdlfkajsdlfkajsd;lfkajds;lfkjasd;flkajsd;lkfja;sdlkfjasd";
bar(Blah);
}