mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 04:26:08 +00:00

After a first attempt to fix the test-suite failures, my first recommit caused the same failures again. I had updated CMakeList.txt files of tests that needed -fcommon, but it turns out that there are also Makefiles which are used by some bots, so I've updated these Makefiles now too. See the original commit message for more details on this change: 0a9fc9233e172601e26381810d093e02ef410f65
9 lines
194 B
C
9 lines
194 B
C
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
int g0, f0();
|
|
int f1(), g1;
|
|
|
|
// CHECK: @g0 = {{(dso_local )?}}global i32 0, align 4
|
|
// CHECK: @g1 = {{(dso_local )?}}global i32 0, align 4
|
|
|