mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
eea61866d5
Since the behaviour is now different between Darwin and non-Darwin, more triples are needed :-/ llvm-svn: 261238
27 lines
510 B
LLVM
27 lines
510 B
LLVM
; RUN: llc < %s -mtriple=i686-unknown-linux-gnu | FileCheck %s
|
|
; rdar://6699246
|
|
|
|
define signext i8 @t1(i8* %A) nounwind readnone ssp {
|
|
entry:
|
|
%0 = icmp ne i8* %A, null
|
|
%1 = zext i1 %0 to i8
|
|
ret i8 %1
|
|
|
|
; CHECK-LABEL: t1:
|
|
; CHECK: cmpl
|
|
; CHECK-NEXT: setne
|
|
; CHECK-NEXT: retl
|
|
}
|
|
|
|
define i8 @t2(i8* %A) nounwind readnone ssp {
|
|
entry:
|
|
%0 = icmp ne i8* %A, null
|
|
%1 = zext i1 %0 to i8
|
|
ret i8 %1
|
|
|
|
; CHECK-LABEL: t2:
|
|
; CHECK: cmpl
|
|
; CHECK-NEXT: setne
|
|
; CHECK-NEXT: retl
|
|
}
|