mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 20:29:53 +00:00
7c9c6ed761
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
744 B
LLVM
27 lines
744 B
LLVM
; RUN: opt < %s -instcombine -S | FileCheck %s
|
|
|
|
define void @test (float %b, <8 x float> * %p) {
|
|
; CHECK: extractelement
|
|
; CHECK: fptosi
|
|
%1 = load <8 x float> , <8 x float> * %p
|
|
%2 = bitcast <8 x float> %1 to <8 x i32>
|
|
%3 = bitcast <8 x i32> %2 to <8 x float>
|
|
%a = fptosi <8 x float> %3 to <8 x i32>
|
|
%4 = fptosi float %b to i32
|
|
%5 = add i32 %4, -2
|
|
%6 = extractelement <8 x i32> %a, i32 %5
|
|
%7 = insertelement <8 x i32> undef, i32 %6, i32 7
|
|
%8 = sitofp <8 x i32> %7 to <8 x float>
|
|
store <8 x float> %8, <8 x float>* %p
|
|
ret void
|
|
}
|
|
|
|
; PR18600
|
|
define i32 @test2(i32 %i) {
|
|
%e = extractelement <4 x i32> bitcast (<2 x i64> <i64 1, i64 2> to <4 x i32>), i32 %i
|
|
ret i32 %e
|
|
|
|
; CHECK-LABEL: @test2
|
|
; CHECK: extractelement
|
|
}
|