xref: /llvm-project/llvm/test/CodeGen/PowerPC/pr28630.ll (revision 5403c59c608c08c8ecd4303763f08eb046eb5e4d)
1; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu -verify-machineinstrs -O0 < %s
2
3define double @test() {
4  ret double 1.000000e+00
5}
6
7@g = common global double 0.000000e+00, align 8
8
9define double @testitd() {
10  %g = load double, ptr @g, align 8
11  ret double %g
12}
13
14