llvm-project/clang/test/CodeGenCXX/attr-loader-uninitialized.cpp
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

42 lines
1.3 KiB
C++

// RUN: %clang_cc1 -triple=x86_64-linux-gnu -emit-llvm -o - %s | FileCheck %s
// CHECK: @defn ={{.*}} global i32 undef
int defn [[clang::loader_uninitialized]];
// CHECK: @_ZL11defn_static = internal global i32 undef
static int defn_static [[clang::loader_uninitialized]] __attribute__((used));
// CHECK: @_ZZ4funcvE4data = internal global i32 undef
int* func(void)
{
static int data [[clang::loader_uninitialized]];
return &data;
}
class trivial
{
float x;
};
// CHECK: @ut ={{.*}} global %class.trivial undef
trivial ut [[clang::loader_uninitialized]];
// CHECK: @arr ={{.*}} global [32 x double] undef
double arr[32] __attribute__((loader_uninitialized));
// Defining as arr2[] [[clang..]] raises the error: attribute cannot be applied to types
// CHECK: @arr2 ={{.*}} global [4 x double] undef
double arr2 [[clang::loader_uninitialized]] [4];
template<typename T> struct templ{T * t;};
// CHECK: @templ_int ={{.*}} global %struct.templ undef
templ<int> templ_int [[clang::loader_uninitialized]];
// CHECK: @templ_trivial ={{.*}} global %struct.templ.0 undef
templ<trivial> templ_trivial [[clang::loader_uninitialized]];
// CHECK: @templ_incomplete ={{.*}} global %struct.templ.1 undef
struct incomplete;
templ<incomplete> templ_incomplete [[clang::loader_uninitialized]];