Files
clang-p2996/clang/test/CodeGen/Inputs/thinlto_backend_local_name_conflict2.ll
Nikita Popov 39db5e1ed8 [CodeGen] Convert tests to opaque pointers (NFC)
Conversion performed using the script at:
https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34

These are only tests where no manual fixup was required.
2022-10-07 14:22:00 +02:00

14 lines
383 B
LLVM

; ModuleID = 'local_name_conflict_var.o'
source_filename = "local_name_conflict_var.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
@baz = internal global i32 10, align 4
; Function Attrs: noinline nounwind uwtable
define i32 @b() {
entry:
%0 = load i32, ptr @baz, align 4
ret i32 %0
}