mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 23:18:58 +00:00
03304fa3e3
Since the behaviour is now different between Darwin and non-Darwin, more triples are needed :-/ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@261238 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
222 B
LLVM
11 lines
222 B
LLVM
; 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
|
|
}
|