You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
234 B
11 lines
234 B
4 months ago
|
; RUN: llc < %s -march=sparcv9 | FileCheck %s
|
||
|
|
||
|
define dso_local zeroext i32 @f() local_unnamed_addr {
|
||
|
entry:
|
||
|
%0 = tail call i64 asm "", "=r"()
|
||
|
%shr = lshr i64 %0, 32
|
||
|
%conv = trunc i64 %shr to i32
|
||
|
ret i32 %conv
|
||
|
}
|
||
|
; CHECK: srlx
|