reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 | // 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); } |