summaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorNadav Rotem <nrotem@apple.com>2012-10-31 16:14:06 +0000
committerNadav Rotem <nrotem@apple.com>2012-10-31 16:14:06 +0000
commit2a5401cc75acf38092a7224cadaf895281d41b29 (patch)
tree3f5fa06570364a19405f8a3b4b760cb058c2d37b /lib/Transforms
parentdaf4cfc8d890c7f17241ff7127b64c13ed2cb4d4 (diff)
downloadllvm-2a5401cc75acf38092a7224cadaf895281d41b29.tar.gz
llvm-2a5401cc75acf38092a7224cadaf895281d41b29.tar.bz2
llvm-2a5401cc75acf38092a7224cadaf895281d41b29.tar.xz
Remove enum values since they are not used anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Vectorize/LoopVectorize.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp
index fd728bd616..40235ef104 100644
--- a/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -212,12 +212,12 @@ public:
/// This represents the kinds of reductions that we support.
enum ReductionKind {
- NoReduction = -1, /// Not a reduction.
- IntegerAdd = 0, /// Sum of numbers.
- IntegerMult = 1, /// Product of numbers.
- IntegerOr = 2, /// Bitwise or logical OR of numbers.
- IntegerAnd = 3, /// Bitwise or logical AND of numbers.
- IntegerXor = 4 /// Bitwise or logical XOR of numbers.
+ NoReduction, /// Not a reduction.
+ IntegerAdd, /// Sum of numbers.
+ IntegerMult, /// Product of numbers.
+ IntegerOr, /// Bitwise or logical OR of numbers.
+ IntegerAnd, /// Bitwise or logical AND of numbers.
+ IntegerXor /// Bitwise or logical XOR of numbers.
};
/// This POD struct holds information about reduction variables.