From: Dale Johannesen Date: Sat, 8 Nov 2008 00:49:19 +0000 (+0000) Subject: Generated code for generic expansion of SETUGT etc. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=3dd42cfe125d3ebc9e3551204bc3b89f06b2a3f3;p=oota-llvm.git Generated code for generic expansion of SETUGT etc. is noticeably worse than previous PPC-specific code. Since the latter was also wrong in some cases and correctness is more important than efficiency, I'm disabling this test temporarily while I fix it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58876 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/PowerPC/compare-fcmp-ord.ll b/test/CodeGen/PowerPC/compare-fcmp-ord.ll index e578ca3737d..c3ba4f5ef38 100644 --- a/test/CodeGen/PowerPC/compare-fcmp-ord.ll +++ b/test/CodeGen/PowerPC/compare-fcmp-ord.ll @@ -1,6 +1,7 @@ ; RUN: llvm-as < %s | llc -march=ppc32 | grep or | count 3 ; This should produce one 'or' or 'cror' instruction per function. +; XFAIL: * ; RUN: llvm-as < %s | llc -march=ppc32 | grep mfcr | count 3 ; PR2964