Add a priority queue class, which is a wrapper around std::priority_queue
[oota-llvm.git] / test / Transforms / InstCombine / 2007-01-14-FcmpSelf.ll
index 3b34a7db9dc32eef16e790049e013da339e44aca..073d3a154128616aff486c332220b2fd7abf71e2 100644 (file)
@@ -1,6 +1,6 @@
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 'fcmp uno.*0.0'
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {fcmp uno.*0.0}
 ; PR1111
-define i1 %test(double %X) {
-%tmp = fcmp une double %X, %X
+define i1 @test(double %X) {
+  %tmp = fcmp une double %X, %X
   ret i1 %tmp
 }