mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
No need to make the subtarget feature bit enum a uint64_t. This was a leftover from when the feature bit enum contained masks instead of bit indices.
llvm-svn: 260808
This commit is contained in:
parent
17fddb8c58
commit
149f7e2025
@ -127,7 +127,7 @@ void SubtargetEmitter::Enumeration(raw_ostream &OS,
|
||||
OS << "namespace " << Target << " {\n";
|
||||
|
||||
// Open enumeration. Use a 64-bit underlying type.
|
||||
OS << "enum : uint64_t {\n";
|
||||
OS << "enum {\n";
|
||||
|
||||
// For each record
|
||||
for (unsigned i = 0; i < N;) {
|
||||
|
Loading…
Reference in New Issue
Block a user