From 345cb09610f355c177e21532c141bf03d254c7ab Mon Sep 17 00:00:00 2001 From: Zinovy Nis Date: Thu, 17 Jul 2014 17:14:35 +0000 Subject: [PATCH] [BUG] Due to a typo introduced in r199933 and r200027 two tests for FMA were never even started. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213283 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/fma.ll | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/CodeGen/X86/fma.ll b/test/CodeGen/X86/fma.ll index 47252ec0bf3..2eb152b078e 100644 --- a/test/CodeGen/X86/fma.ll +++ b/test/CodeGen/X86/fma.ll @@ -43,8 +43,8 @@ entry: } ; Test FMA3 variant selection -; CHECK: fma3_select231ssX: -; CHECK: vfmadd231ss xmm +; CHECK-FMA-INST: fma3_select231ssX: +; CHECK-FMA-INST: vfmadd231ss %xmm define float @fma3_select231ssX(float %x, float %y) #0 { entry: br label %while.body @@ -58,8 +58,8 @@ while.end: ; preds = %while.body, %entry } ; Test FMA3 variant selection -; CHECK: fma3_select231pdY: -; CHECK: vfmadd231pd ymm +; CHECK-FMA-INST: fma3_select231pdY: +; CHECK-FMA-INST: vfmadd231pd %ymm define <4 x double> @fma3_select231pdY(<4 x double> %x, <4 x double> %y) #0 { entry: br label %while.body -- 2.34.1