From 2d4ce5472ed9c8a2ba6f5965fee28fba4807fcfb 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. llvm-svn: 213283 --- llvm/test/CodeGen/X86/fma.ll | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/llvm/test/CodeGen/X86/fma.ll b/llvm/test/CodeGen/X86/fma.ll index 47252ec..2eb152b0 100644 --- a/llvm/test/CodeGen/X86/fma.ll +++ b/llvm/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.7.4