mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +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
30 lines
1.1 KiB
LLVM
30 lines
1.1 KiB
LLVM
; PR1271
|
|
; RUN: opt < %s -instcombine -S | \
|
|
; RUN: grep "icmp eq i32 .tmp.*, 2146435072"
|
|
%struct..0anon = type { i32, i32 }
|
|
%struct..1anon = type { double }
|
|
|
|
define i32 @main() {
|
|
entry:
|
|
%u = alloca %struct..1anon, align 8 ; <%struct..1anon*> [#uses=4]
|
|
%tmp1 = getelementptr %struct..1anon, %struct..1anon* %u, i32 0, i32 0 ; <double*> [#uses=1]
|
|
store double 0x7FF0000000000000, double* %tmp1
|
|
%tmp3 = getelementptr %struct..1anon, %struct..1anon* %u, i32 0, i32 0 ; <double*> [#uses=1]
|
|
%tmp34 = bitcast double* %tmp3 to %struct..0anon* ; <%struct..0anon*> [#uses=1]
|
|
%tmp5 = getelementptr %struct..0anon, %struct..0anon* %tmp34, i32 0, i32 1 ; <i32*> [#uses=1]
|
|
%tmp6 = load i32, i32* %tmp5 ; <i32> [#uses=1]
|
|
%tmp7 = shl i32 %tmp6, 1 ; <i32> [#uses=1]
|
|
%tmp8 = lshr i32 %tmp7, 21 ; <i32> [#uses=1]
|
|
%tmp89 = trunc i32 %tmp8 to i16 ; <i16> [#uses=1]
|
|
icmp ne i16 %tmp89, 2047 ; <i1>:0 [#uses=1]
|
|
zext i1 %0 to i8 ; <i8>:1 [#uses=1]
|
|
icmp ne i8 %1, 0 ; <i1>:2 [#uses=1]
|
|
br i1 %2, label %cond_true, label %cond_false
|
|
|
|
cond_true: ; preds = %entry
|
|
ret i32 0
|
|
|
|
cond_false: ; preds = %entry
|
|
ret i32 1
|
|
}
|