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.
|
; RUN: llc < %s -mtriple=i686-unknown-linux-gnu | FileCheck %s
|
|
|
|
define signext i8 @foo(i16 signext %x) nounwind {
|
|
%retval56 = trunc i16 %x to i8
|
|
ret i8 %retval56
|
|
|
|
; CHECK-LABEL: foo:
|
|
; CHECK: movb
|
|
; CHECK-NEXT: retl
|
|
}
|