Skip to content

Commit

Permalink
[clang] Remove a duplicate action kind table entry.
Browse files Browse the repository at this point in the history
We have two entries for OPT_emit_codegen_only in the frontend action kind
table, delete one.

Differential Revision: https://reviews.llvm.org/D119826
  • Loading branch information
iains committed Feb 15, 2022
1 parent 78c27a3 commit 2370977
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion clang/lib/Frontend/CompilerInvocation.cpp
Expand Up @@ -2406,7 +2406,6 @@ static const auto &getFrontendActionTable() {
{frontend::EmitLLVM, OPT_emit_llvm},
{frontend::EmitLLVMOnly, OPT_emit_llvm_only},
{frontend::EmitCodeGenOnly, OPT_emit_codegen_only},
{frontend::EmitCodeGenOnly, OPT_emit_codegen_only},
{frontend::EmitObj, OPT_emit_obj},
{frontend::ExtractAPI, OPT_extract_api},

Expand Down

0 comments on commit 2370977

Please sign in to comment.