mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
ab043ff680
Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 llvm-svn: 230794
36 lines
1.3 KiB
LLVM
36 lines
1.3 KiB
LLVM
; RUN: llc < %s | FileCheck %s
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-unknown"
|
|
|
|
define void @PR22524({ float, float }* %arg) {
|
|
; Check that we can materialize the zero constants we store in two places here,
|
|
; and at least form a legal store of the floating point value at the end.
|
|
; The DAG combiner at one point contained bugs that given enough permutations
|
|
; would incorrectly form an illegal operation for the last of these stores when
|
|
; it folded it to a zero too late to legalize the zero store operation. If this
|
|
; ever starts forming a zero store instead of movss, the test case has stopped
|
|
; being useful.
|
|
;
|
|
; CHECK-LABEL: PR22524:
|
|
entry:
|
|
%0 = getelementptr inbounds { float, float }, { float, float }* %arg, i32 0, i32 1
|
|
store float 0.000000e+00, float* %0, align 4
|
|
; CHECK: movl $0, 4(%rdi)
|
|
|
|
%1 = getelementptr inbounds { float, float }, { float, float }* %arg, i64 0, i32 0
|
|
%2 = bitcast float* %1 to i64*
|
|
%3 = load i64, i64* %2, align 8
|
|
%4 = trunc i64 %3 to i32
|
|
%5 = lshr i64 %3, 32
|
|
%6 = trunc i64 %5 to i32
|
|
%7 = bitcast i32 %6 to float
|
|
%8 = fmul float %7, 0.000000e+00
|
|
%9 = bitcast float* %1 to i32*
|
|
store i32 %6, i32* %9, align 4
|
|
; CHECK: movl $0, (%rdi)
|
|
store float %8, float* %0, align 4
|
|
; CHECK: movss %{{.*}}, 4(%rdi)
|
|
ret void
|
|
}
|