1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -march=x86 | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker; <rdar://problem/8285015> 3*9880d681SAndroid Build Coastguard Worker 4*9880d681SAndroid Build Coastguard Workerdefine i32 @x(i32 %t) nounwind readnone ssp { 5*9880d681SAndroid Build Coastguard Workerentry: 6*9880d681SAndroid Build Coastguard Worker; CHECK: shll $23, %eax 7*9880d681SAndroid Build Coastguard Worker; CHECK: sarl $31, %eax 8*9880d681SAndroid Build Coastguard Worker; CHECK: andl $-26, %eax 9*9880d681SAndroid Build Coastguard Worker %and = and i32 %t, 256 10*9880d681SAndroid Build Coastguard Worker %tobool = icmp eq i32 %and, 0 11*9880d681SAndroid Build Coastguard Worker %retval.0 = select i1 %tobool, i32 0, i32 -26 12*9880d681SAndroid Build Coastguard Worker ret i32 %retval.0 13*9880d681SAndroid Build Coastguard Worker} 14