[llvm] r185958 - Attempt to appease buildbot after r185956 by explicitly turning setting -fma, -fma4 attrs (I'm assuming they're set because the bot is running on machine that has one or the other.)

Stephen Lin stephenwlin at gmail.com
Tue Jul 9 11:41:43 PDT 2013


Author: stephenwlin
Date: Tue Jul  9 13:41:43 2013
New Revision: 185958

URL: http://llvm.org/viewvc/llvm-project?rev=185958&view=rev
Log:
Attempt to appease buildbot after r185956 by explicitly turning setting -fma,-fma4 attrs (I'm assuming they're set because the bot is running on machine that has one or the other.)

Modified:
    llvm/trunk/test/CodeGen/X86/extended-fma-contraction.ll
    llvm/trunk/test/CodeGen/X86/wide-fma-contraction.ll

Modified: llvm/trunk/test/CodeGen/X86/extended-fma-contraction.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/extended-fma-contraction.ll?rev=185958&r1=185957&r2=185958&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/extended-fma-contraction.ll (original)
+++ llvm/trunk/test/CodeGen/X86/extended-fma-contraction.ll Tue Jul  9 13:41:43 2013
@@ -1,5 +1,5 @@
 ; RUN: llc -march=x86 -mattr=+fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s
-; RUN: llc -march=x86 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA
+; RUN: llc -march=x86 -mattr=-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA
 
 ; CHECK: fmafunc
 define <3 x float> @fmafunc(<3 x float> %a, <3 x float> %b, <3 x float> %c) {

Modified: llvm/trunk/test/CodeGen/X86/wide-fma-contraction.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/wide-fma-contraction.ll?rev=185958&r1=185957&r2=185958&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/wide-fma-contraction.ll (original)
+++ llvm/trunk/test/CodeGen/X86/wide-fma-contraction.ll Tue Jul  9 13:41:43 2013
@@ -1,5 +1,5 @@
 ; RUN: llc -march=x86 -mattr=+fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s
-; RUN: llc -march=x86 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA
+; RUN: llc -march=x86 -mattr=-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA
 
 ; CHECK: fmafunc
 define <16 x float> @fmafunc(<16 x float> %a, <16 x float> %b, <16 x float> %c) {





More information about the llvm-commits mailing list