mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 17:36:06 +00:00

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.
17 lines
479 B
C++
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
|