[SLPVectorizer] move RUN line to top-of-file; NFC
authorSanjay Patel <spatel@rotateright.com>
Thu, 8 Feb 2018 15:28:49 +0000 (15:28 +0000)
committerSanjay Patel <spatel@rotateright.com>
Thu, 8 Feb 2018 15:28:49 +0000 (15:28 +0000)
I was confused what we were checking because the RUN line was
in the middle of the file.

llvm-svn: 324614

llvm/test/Transforms/SLPVectorizer/X86/horizontal.ll

index 2fa88cb..90fe10a 100644 (file)
@@ -1,5 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
 ; RUN: opt -slp-vectorizer -S < %s -mtriple=x86_64-apple-macosx -mcpu=corei7-avx | FileCheck %s
+; RUN: opt -slp-vectorizer -slp-vectorize-hor -slp-vectorize-hor-store -S < %s -mtriple=x86_64-apple-macosx -mcpu=corei7-avx | FileCheck %s --check-prefix=STORE
 
 ; #include <stdint.h>
 ;
@@ -928,7 +929,6 @@ for.body16:                                       ; preds = %for.body16, %for.bo
   br i1 %exitcond, label %for.cond.cleanup15, label %for.body16
 }
 
-; RUN: opt -slp-vectorizer -slp-vectorize-hor -slp-vectorize-hor-store -S < %s -mtriple=x86_64-apple-macosx -mcpu=corei7-avx | FileCheck %s --check-prefix=STORE
 
 ; void foo(double * restrict A, double * restrict B, double * restrict C,
 ;          int n) {