File: fold-sext-trunc.ll

package info (click to toggle)
llvm-toolchain-6.0 1%3A6.0.1-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 598,080 kB
  • sloc: cpp: 3,046,253; ansic: 595,057; asm: 271,965; python: 128,926; objc: 106,554; sh: 21,906; lisp: 10,191; pascal: 6,094; ml: 5,544; perl: 5,265; makefile: 2,227; cs: 2,027; xml: 686; php: 212; csh: 117
file content (20 lines) | stat: -rw-r--r-- 756 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc < %s -mtriple=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, %0* bitcast (%struct.S1* @g_10 to %0*), i32 0, i32 0)		; <i64> [#uses=1]
	%0 = load i32, i32* getelementptr (%struct.S1, %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
}