[llvm] r185962 - Appease buildbots after r185956: just set -mcpu explicitly, as it should have been from the beginning.
Stephen Lin
stephenwlin at gmail.com
Tue Jul 9 12:27:10 PDT 2013
Author: stephenwlin
Date: Tue Jul 9 14:27:10 2013
New Revision: 185962
URL: http://llvm.org/viewvc/llvm-project?rev=185962&view=rev
Log:
Appease buildbots after r185956: just set -mcpu explicitly, as it should have been from the beginning.
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=185962&r1=185961&r2=185962&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/extended-fma-contraction.ll (original)
+++ llvm/trunk/test/CodeGen/X86/extended-fma-contraction.ll Tue Jul 9 14:27:10 2013
@@ -1,5 +1,5 @@
-; RUN: llc -march=x86 -mattr=+fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s
-; RUN: llc -march=x86 -mattr=+avx,-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA
+; RUN: llc -march=x86 -mcpu=bdver2 -mattr=-fma -mtriple=x86_64-apple-darwin < %s | FileCheck %s
+; RUN: llc -march=x86 -mcpu=bdver2 -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=185962&r1=185961&r2=185962&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/wide-fma-contraction.ll (original)
+++ llvm/trunk/test/CodeGen/X86/wide-fma-contraction.ll Tue Jul 9 14:27:10 2013
@@ -1,5 +1,5 @@
-; RUN: llc -march=x86 -mattr=+fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s
-; RUN: llc -march=x86 -mattr=+avx,-fma,-fma4 -mtriple=x86_64-apple-darwin < %s | FileCheck %s --check-prefix=CHECK-NOFMA
+; RUN: llc -march=x86 -mcpu=bdver2 -mattr=-fma -mtriple=x86_64-apple-darwin < %s | FileCheck %s
+; RUN: llc -march=x86 -mcpu=bdver2 -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