[llvm] r288338 - [X86][SSE] Tidied up filecheck prefixes for uitofp fast-math tests.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 1 06:56:48 PST 2016
Author: rksimon
Date: Thu Dec 1 08:56:48 2016
New Revision: 288338
URL: http://llvm.org/viewvc/llvm-project?rev=288338&view=rev
Log:
[X86][SSE] Tidied up filecheck prefixes for uitofp fast-math tests.
They should be in 'narrowing' order from common to more specific test prefixes.
Modified:
llvm/trunk/test/CodeGen/X86/vec_uint_to_fp-fastmath.ll
Modified: llvm/trunk/test/CodeGen/X86/vec_uint_to_fp-fastmath.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vec_uint_to_fp-fastmath.ll?rev=288338&r1=288337&r2=288338&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/vec_uint_to_fp-fastmath.ll (original)
+++ llvm/trunk/test/CodeGen/X86/vec_uint_to_fp-fastmath.ll Thu Dec 1 08:56:48 2016
@@ -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 \
More information about the llvm-commits
mailing list