llvm-project/clang/test/CodeGenCXX/deferred-global-init.cpp
Nikita Popov 1b9a6e58a8 [CodeGenCXX] Convert some tests to opaque pointers (NFC)
Conversion done using the script at
https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34.

These are tests where the conversion worked out of the box and no
manual fixup was performed.
2022-10-06 12:22:03 +02:00

17 lines
479 B
C++

// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm -o - | FileCheck %s
// PR5967
extern void* foo;
static void* const a = foo;
void* bar() { return a; }
// CHECK: @_ZL1a = internal global ptr null
// CHECK-LABEL: define internal {{.*}}void @__cxx_global_var_init
// CHECK: load ptr, ptr @foo
// CHECK: ret void
// CHECK-LABEL: define internal {{.*}}void @_GLOBAL__sub_I_deferred_global_init.cpp
// CHECK: call {{.*}}void @__cxx_global_var_init()
// CHECK: ret void