Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc %s -S -o - | grep TheGlobal | not grep weak
      2 
      3 extern int TheGlobal;
      4 int foo() { return TheGlobal; }
      5 int TheGlobal = 1;
      6