mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-10 22:43:46 +00:00
![David Blaikie](/assets/img/avatar_default.png)
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
21 lines
736 B
LLVM
21 lines
736 B
LLVM
; RUN: llc < %s -march=x86-64 | grep movslq | count 1
|
|
; PR4050
|
|
|
|
%0 = type { i64 } ; type %0
|
|
%struct.S1 = type { i16, i32 }
|
|
@g_10 = external global %struct.S1 ; <%struct.S1*> [#uses=2]
|
|
|
|
declare void @func_28(i64, i64)
|
|
|
|
define void @int322(i32 %foo) nounwind {
|
|
entry:
|
|
%val = load i64, i64* getelementptr (%0* bitcast (%struct.S1* @g_10 to %0*), i32 0, i32 0) ; <i64> [#uses=1]
|
|
%0 = load i32, i32* getelementptr (%struct.S1* @g_10, i32 0, i32 1), align 4 ; <i32> [#uses=1]
|
|
%1 = sext i32 %0 to i64 ; <i64> [#uses=1]
|
|
%tmp4.i = lshr i64 %val, 32 ; <i64> [#uses=1]
|
|
%tmp5.i = trunc i64 %tmp4.i to i32 ; <i32> [#uses=1]
|
|
%2 = sext i32 %tmp5.i to i64 ; <i64> [#uses=1]
|
|
tail call void @func_28(i64 %2, i64 %1) nounwind
|
|
ret void
|
|
}
|