diff options
author | Sanjay Patel <spatel@rotateright.com> | 2014-09-10 17:58:16 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2014-09-10 17:58:16 +0000 |
commit | b653de1ada7e76a28bcc35402e6cd70f725e0690 (patch) | |
tree | 609443fa6f29272b23753ac3175aedd5dac18a5d /llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll | |
parent | e4f6684d1bbebd464c6cff6b424bce400676250f (diff) | |
download | bcm5719-llvm-b653de1ada7e76a28bcc35402e6cd70f725e0690.tar.gz bcm5719-llvm-b653de1ada7e76a28bcc35402e6cd70f725e0690.zip |
Rename getMaximumUnrollFactor -> getMaxInterleaveFactor; also rename option names controlling this variable.
"Unroll" is not the appropriate name for this variable. Clang already uses
the term "interleave" in pragmas and metadata for this.
Differential Revision: http://reviews.llvm.org/D5066
llvm-svn: 217528
Diffstat (limited to 'llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll b/llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll index f6834477ff5..7dc6831f89e 100644 --- a/llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll +++ b/llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll @@ -1,6 +1,6 @@ ; RUN: opt < %s -loop-vectorize -mtriple=x86_64-unknown-linux -S -pass-remarks='loop-vectorize' 2>&1 | FileCheck -check-prefix=VECTORIZED %s -; RUN: opt < %s -loop-vectorize -force-vector-width=1 -force-vector-unroll=4 -mtriple=x86_64-unknown-linux -S -pass-remarks='loop-vectorize' 2>&1 | FileCheck -check-prefix=UNROLLED %s -; RUN: opt < %s -loop-vectorize -force-vector-width=1 -force-vector-unroll=1 -mtriple=x86_64-unknown-linux -S -pass-remarks-analysis='loop-vectorize' 2>&1 | FileCheck -check-prefix=NONE %s +; RUN: opt < %s -loop-vectorize -force-vector-width=1 -force-vector-interleave=4 -mtriple=x86_64-unknown-linux -S -pass-remarks='loop-vectorize' 2>&1 | FileCheck -check-prefix=UNROLLED %s +; RUN: opt < %s -loop-vectorize -force-vector-width=1 -force-vector-interleave=1 -mtriple=x86_64-unknown-linux -S -pass-remarks-analysis='loop-vectorize' 2>&1 | FileCheck -check-prefix=NONE %s ; This code has all the !dbg annotations needed to track source line information, ; but is missing the llvm.dbg.cu annotation. This prevents code generation from |