bolt/deps/llvm-18.1.8/clang/test/CodeGen/2005-07-28-IncorrectWeakGlobal.c
2025-02-14 19:21:04 +01:00

5 lines
149 B
C

// RUN: %clang_cc1 %s -emit-llvm -o - | grep TheGlobal | not grep weak
extern int TheGlobal;
int foo(void) { return TheGlobal; }
int TheGlobal = 1;