[llvm-commits] [llvm] r160329 - /llvm/trunk/test/CodeGen/Mips/selectcc.ll
Akira Hatanaka
ahatanaka at mips.com
Mon Jul 16 16:56:52 PDT 2012
Author: ahatanak
Date: Mon Jul 16 18:56:51 2012
New Revision: 160329
URL: http://llvm.org/viewvc/llvm-project?rev=160329&view=rev
Log:
Fix function select_cc_f32 in test/CodeGen/Mips/selectcc.ll.
Modified:
llvm/trunk/test/CodeGen/Mips/selectcc.ll
Modified: llvm/trunk/test/CodeGen/Mips/selectcc.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/selectcc.ll?rev=160329&r1=160328&r2=160329&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/selectcc.ll (original)
+++ llvm/trunk/test/CodeGen/Mips/selectcc.ll Mon Jul 16 18:56:51 2012
@@ -1,16 +1,18 @@
-; RUN: llc -march=mipsel < %s
+; RUN: llc -march=mipsel < %s
+ at gf0 = external global float
+ at gf1 = external global float
@gd0 = external global double
@gd1 = external global double
-define double @select_cc_f32(float %a, float %b) nounwind {
+define float @select_cc_f32(float %a, float %b) nounwind {
entry:
- store double 0.000000e+00, double* @gd0, align 8
- store double 1.000000e+00, double* @gd1, align 8
+ store float 0.000000e+00, float* @gf0, align 4
+ store float 1.000000e+00, float* @gf1, align 4
%cmp = fcmp olt float %a, %b
%conv = zext i1 %cmp to i32
- %conv1 = sitofp i32 %conv to double
- ret double %conv1
+ %conv1 = sitofp i32 %conv to float
+ ret float %conv1
}
define double @select_cc_f64(double %a, double %b) nounwind {
More information about the llvm-commits
mailing list