diff options
| author | Tyler Nowicki <tyler.nowicki@gmail.com> | 2015-06-16 22:59:45 +0000 |
|---|---|---|
| committer | Tyler Nowicki <tyler.nowicki@gmail.com> | 2015-06-16 22:59:45 +0000 |
| commit | 27b2c39eb344fa443e95a6747726a7ddd257690f (patch) | |
| tree | bd9cba317cae578f7721cdf1e25fe1b3b7381d1b /llvm/lib/Transforms/Vectorize | |
| parent | 86e90b3cfae0c011088cb15c1d5f1cd5b9a83ba1 (diff) | |
| download | bcm5719-llvm-27b2c39eb344fa443e95a6747726a7ddd257690f.tar.gz bcm5719-llvm-27b2c39eb344fa443e95a6747726a7ddd257690f.zip | |
Refactor RecurrenceInstDesc
Moved RecurrenceInstDesc into RecurrenceDescriptor to simplify the namespaces.
llvm-svn: 239862
Diffstat (limited to 'llvm/lib/Transforms/Vectorize')
| -rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 62de2008916..d9a38844b50 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -3098,7 +3098,7 @@ void InnerLoopVectorizer::vectorizeLoop() { RecurrenceDescriptor::RecurrenceKind RK = RdxDesc.getRecurrenceKind(); TrackingVH<Value> ReductionStartValue = RdxDesc.getRecurrenceStartValue(); Instruction *LoopExitInst = RdxDesc.getLoopExitInstr(); - RecurrenceInstDesc::MinMaxRecurrenceKind MinMaxKind = + RecurrenceDescriptor::MinMaxRecurrenceKind MinMaxKind = RdxDesc.getMinMaxRecurrenceKind(); setDebugLocFromInst(Builder, ReductionStartValue); |

