mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
c310b1f1f3
llvm-svn: 49970
8 lines
181 B
LLVM
8 lines
181 B
LLVM
; RUN: llvm-as < %s | llc -march=x86
|
|
|
|
define double @test(double %d) {
|
|
%X = select i1 false, double %d, double %d ; <double> [#uses=1]
|
|
ret double %X
|
|
}
|
|
|