2016-08-03 20:17:35 +02:00
|
|
|
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=g4 | FileCheck %s
|
2011-12-09 02:16:26 +01:00
|
|
|
|
|
|
|
define void @test(i32* nocapture %x, i64* %xx, i32* %yp) nounwind uwtable ssp {
|
|
|
|
entry:
|
2015-02-27 22:17:42 +01:00
|
|
|
%yy = load i32, i32* %yp
|
2011-12-09 02:16:26 +01:00
|
|
|
%y = add i32 %yy, 1
|
|
|
|
%z = zext i32 %y to i64
|
|
|
|
%z2 = shl i64 %z, 32
|
|
|
|
store i64 %z2, i64* %xx, align 4
|
|
|
|
ret void
|
|
|
|
|
2013-07-13 22:38:47 +02:00
|
|
|
; CHECK-LABEL: test:
|
2011-12-09 02:16:26 +01:00
|
|
|
; CHECK: sldi {{.*}}, {{.*}}, 32
|
|
|
|
; Note: it's okay if someday CodeGen gets smart enough to optimize out
|
|
|
|
; the shift.
|
|
|
|
}
|