[llvm] r185961 - Appease Atom buildbot after r185956 (explicitly turn on AVX)
Stephen Lin
stephenwlin at gmail.com
Tue Jul 9 11:55:52 PDT 2013
Author: stephenwlin
Date: Tue Jul 9 13:55:52 2013
New Revision: 185961
URL: http://llvm.org/viewvc/llvm-project?rev=185961&view=rev
Log:
Appease Atom buildbot after r185956 (explicitly turn on AVX)
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=185961&r1=185960&r2=185961&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:55:52 2013
@@ -1,5 +1,5 @@
; RUN: llc -march=x86 -mattr=+fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s
-; RUN: llc -march=x86 -mattr=-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA
+; RUN: llc -march=x86 -mattr=+avx,-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=185961&r1=185960&r2=185961&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:55:52 2013
@@ -1,5 +1,5 @@
; RUN: llc -march=x86 -mattr=+fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s
-; RUN: llc -march=x86 -mattr=-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA
+; RUN: llc -march=x86 -mattr=+avx,-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