Kai Nacke 5403c59c60 [PPC] Opaque pointer migration, part 2.
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, nikic

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

14 lines
266 B
LLVM

; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu -verify-machineinstrs -O0 < %s
define double @test() {
ret double 1.000000e+00
}
@g = common global double 0.000000e+00, align 8
define double @testitd() {
%g = load double, ptr @g, align 8
ret double %g
}