Skip to content

Commit

Permalink
fix build by changing enum definition (llvm#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
joennlae committed Dec 7, 2023
1 parent d30012e commit 2ba2cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/utils/TableGen/TableGenBackends.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace clang {
// or
// `#pragma clang riscv intrinsic thead_vector` for RVV 0.7.1 (the
// `XTHEADV_VECTOR`).
enum RVVHeaderType : uint8_t { RVV, XTHEADV_VECTOR };
enum RVVHeaderType { RVV, XTHEADV_VECTOR };

void EmitClangDeclContext(llvm::RecordKeeper &RK, llvm::raw_ostream &OS);
void EmitClangASTNodes(llvm::RecordKeeper &RK, llvm::raw_ostream &OS,
Expand Down

0 comments on commit 2ba2cab

Please sign in to comment.