Kai Nacke 427fb35192 [PPC] Opaque pointer migration, part 1.
The LIT test cases were migrated with the script provided by
Nikita Popov. Due to the size of the change it is split into
several parts.

Reviewed By: nemanja, amyk, nikic, PowerPC

Differential Revision: https://reviews.llvm.org/D135470
2022-10-11 17:24:06 +00:00

20 lines
454 B
LLVM

; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
; CHECK: lis 3, x@ha
; CHECK: lis 4, y@ha
; CHECK: lwz 3, x@l(3)
; CHECK: lwz 4, y@l(4)
; CHECK: .hidden x
; CHECK: .hidden y
@x = external hidden global i32
@y = extern_weak hidden global i32
define i32 @t() nounwind readonly {
entry:
%0 = load i32, ptr @x, align 4
%1 = load i32, ptr @y, align 4
%2 = add i32 %1, %0
ret i32 %2
}