From: Chris Lattner Date: Mon, 23 Jan 2006 05:56:34 +0000 (+0000) Subject: Make sure this tests the right thing, xfail on solaris, which doesn't have floorf X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=e7ed39d2e9dbfe42c61e808aa1093c9cc52e3531 Make sure this tests the right thing, xfail on solaris, which doesn't have floorf git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25524 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/SimplifyLibCalls/floor.ll b/test/Transforms/SimplifyLibCalls/floor.ll index 542ff5706d9..b9eba106933 100644 --- a/test/Transforms/SimplifyLibCalls/floor.ll +++ b/test/Transforms/SimplifyLibCalls/floor.ll @@ -1,4 +1,7 @@ -; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*floor(' +; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*floor(' && +; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | grep 'call.*floorf(' + +; XFAIL: sparc declare double %floor(double)