Files
clang-p2996/clang/test/CodeGen/SystemZ/align-systemz.c
Fangrui Song fd739804e0 [test] Add {{.*}} to make ELF tests immune to dso_local/dso_preemptable/(none) differences
For a default visibility external linkage definition, dso_local is set for ELF
-fno-pic/-fpie and COFF and Mach-O. Since default clang -cc1 for ELF is similar
to -fpic ("PIC Level" is not set), this nuance causes unneeded binary format differences.

To make emitted IR similar, ELF -cc1 -fpic will default to -fno-semantic-interposition,
which sets dso_local for default visibility external linkage definitions.

To make this flip smooth and enable future (dso_local as definition default),
this patch replaces (function) `define ` with `define{{.*}} `,
(variable/constant/alias) `= ` with `={{.*}} `, or inserts appropriate `{{.*}} `.
2020-12-31 00:27:11 -08:00

44 lines
886 B
C

// RUN: %clang_cc1 -triple s390x-linux-gnu -emit-llvm %s -o - | FileCheck %s
// SystemZ prefers to align all global variables to two bytes.
struct test {
signed char a;
};
char c;
// CHECK-DAG: @c ={{.*}} global i8 0, align 2
struct test s;
// CHECK-DAG: @s ={{.*}} global %struct.test zeroinitializer, align 2
extern char ec;
// CHECK-DAG: @ec = external global i8, align 2
extern struct test es;
// CHECK-DAG: @es = external global %struct.test, align 2
// Dummy function to make sure external symbols are used.
void func (void)
{
c = ec;
s = es;
}
// Alignment should be respected for coerced argument loads
struct arg { long y __attribute__((packed, aligned(4))); };
extern struct arg x;
void f(struct arg);
void test (void)
{
f(x);
}
// CHECK-LABEL: @test
// CHECK: load i64, i64* getelementptr inbounds (%struct.arg, %struct.arg* @x, i32 0, i32 0), align 4