[llvm-commits] [llvm] r62716 - /llvm/trunk/test/CodeGen/X86/limited-prec.ll

Bill Wendling isanbard at gmail.com
Wed Jan 21 13:28:03 PST 2009


Author: void
Date: Wed Jan 21 15:28:03 2009
New Revision: 62716

URL: http://llvm.org/viewvc/llvm-project?rev=62716&view=rev
Log:
Now with RUN line.

Modified:
    llvm/trunk/test/CodeGen/X86/limited-prec.ll

Modified: llvm/trunk/test/CodeGen/X86/limited-prec.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/limited-prec.ll?rev=62716&r1=62715&r2=62716&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/limited-prec.ll (original)
+++ llvm/trunk/test/CodeGen/X86/limited-prec.ll Wed Jan 21 15:28:03 2009
@@ -1,5 +1,9 @@
-; ModuleID = '<stdin>'
-target triple = "i386-apple-darwin9.5"
+; RUN: llvm-as < %s | llc -limit-float-precision=6 -march=x86 | \
+; RUN:    not grep exp | not grep log | not grep pow
+; RUN: llvm-as < %s | llc -limit-float-precision=12 -march=x86 | \
+; RUN:    not grep exp | not grep log | not grep pow
+; RUN: llvm-as < %s | llc -limit-float-precision=18 -march=x86 | \
+; RUN:    not grep exp | not grep log | not grep pow
 
 define float @f1(float %x) nounwind noinline {
 entry:





More information about the llvm-commits mailing list