From 2cff28dd273bc1bab830b2b1c1af2ce2e2da3ed3 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Thu, 1 Dec 2016 14:56:48 +0000 Subject: [PATCH] [X86][SSE] Tidied up filecheck prefixes for uitofp fast-math tests. They should be in 'narrowing' order from common to more specific test prefixes. llvm-svn: 288338 --- llvm/test/CodeGen/X86/vec_uint_to_fp-fastmath.ll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/test/CodeGen/X86/vec_uint_to_fp-fastmath.ll b/llvm/test/CodeGen/X86/vec_uint_to_fp-fastmath.ll index cb8e209..8f0e8b2 100644 --- a/llvm/test/CodeGen/X86/vec_uint_to_fp-fastmath.ll +++ b/llvm/test/CodeGen/X86/vec_uint_to_fp-fastmath.ll @@ -1,9 +1,9 @@ ; RUN: llc < %s -mtriple=x86_64 -enable-unsafe-fp-math \ -; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=SSE --check-prefix=CST +; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=CST --check-prefix=SSE --check-prefix=SSE2 ; RUN: llc < %s -mtriple=x86_64 -enable-unsafe-fp-math -mattr=+sse4.1 \ -; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=SSE --check-prefix=CST +; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=CST --check-prefix=SSE --check-prefix=SSE41 ; RUN: llc < %s -mtriple=x86_64 -enable-unsafe-fp-math -mattr=+avx \ -; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=AVX --check-prefix=CST +; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=CST --check-prefix=AVX ; RUN: llc < %s -mtriple=x86_64 -enable-unsafe-fp-math -mattr=+avx2 \ ; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=AVX2 ; RUN: llc < %s -mtriple=x86_64 -enable-unsafe-fp-math -mattr=+avx512f \ -- 2.7.4