Teach tblgen's set theory "sequence" operator to support an optional stride operand.
[oota-llvm.git] / test / CodeGen / PTX / fneg.ll
index 185c37c879bb721373b2519039c7f7bc41d6ac9e..2b76e638f682d486753fdf9aac5bb84b8658f683 100644 (file)
@@ -1,15 +1,15 @@
 ; RUN: llc < %s -march=ptx32 | FileCheck %s
 
 define ptx_device float @t1_f32(float %x) {
-; CHECK: neg.f32 r0, r1;
-; CHECK-NEXT: ret;
+; CHECK: neg.f32 %ret{{[0-9]+}}, %f{{[0-9]+}};
+; CHECK: ret;
        %y = fsub float -0.000000e+00, %x
        ret float %y
 }
 
 define ptx_device double @t1_f64(double %x) {
-; CHECK: neg.f64 rd0, rd1;
-; CHECK-NEXT: ret;
+; CHECK: neg.f64 %ret{{[0-9]+}}, %fd{{[0-9]+}};
+; CHECK: ret;
        %y = fsub double -0.000000e+00, %x
        ret double %y
 }