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.
22 lines
499 B
22 lines
499 B
4 months ago
|
; RUN: llc -march=mips64el -filetype=obj -mcpu=mips64r2 %s -o - | \
|
||
|
; RUN: llvm-objdump -disassemble - | FileCheck %s
|
||
|
|
||
|
; Sign extend from 32 to 64 was creating nonsense opcodes
|
||
|
|
||
|
; CHECK: sll ${{[a-z0-9]+}}, ${{[a-z0-9]+}}, 0
|
||
|
|
||
|
define i64 @foo(i32 %ival) nounwind readnone {
|
||
|
entry:
|
||
|
%conv = sext i32 %ival to i64
|
||
|
ret i64 %conv
|
||
|
}
|
||
|
|
||
|
; CHECK: dsll32 ${{[a-z0-9]+}}, ${{[a-z0-9]+}}, 0
|
||
|
|
||
|
define i64 @foo_2(i32 %ival_2) nounwind readnone {
|
||
|
entry:
|
||
|
%conv_2 = zext i32 %ival_2 to i64
|
||
|
ret i64 %conv_2
|
||
|
}
|
||
|
|