mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-04 18:24:38 +00:00
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
This commit is contained in:
@ -212,12 +212,12 @@ public:
|
|||||||
|
|
||||||
/// This represents the kinds of reductions that we support.
|
/// This represents the kinds of reductions that we support.
|
||||||
enum ReductionKind {
|
enum ReductionKind {
|
||||||
NoReduction = -1, /// Not a reduction.
|
NoReduction, /// Not a reduction.
|
||||||
IntegerAdd = 0, /// Sum of numbers.
|
IntegerAdd, /// Sum of numbers.
|
||||||
IntegerMult = 1, /// Product of numbers.
|
IntegerMult, /// Product of numbers.
|
||||||
IntegerOr = 2, /// Bitwise or logical OR of numbers.
|
IntegerOr, /// Bitwise or logical OR of numbers.
|
||||||
IntegerAnd = 3, /// Bitwise or logical AND of numbers.
|
IntegerAnd, /// Bitwise or logical AND of numbers.
|
||||||
IntegerXor = 4 /// Bitwise or logical XOR of numbers.
|
IntegerXor /// Bitwise or logical XOR of numbers.
|
||||||
};
|
};
|
||||||
|
|
||||||
/// This POD struct holds information about reduction variables.
|
/// This POD struct holds information about reduction variables.
|
||||||
|
Reference in New Issue
Block a user