diff options
author | Puyan Lotfi <puyan@puyan.org> | 2020-03-28 04:08:27 -0400 |
---|---|---|
committer | Puyan Lotfi <puyan@puyan.org> | 2020-04-01 10:49:06 -0400 |
commit | e3033c0ce5517efddbf92a079ad1e0ca4868591f (patch) | |
tree | 98ef0cb8c4d7c7ad93346933371f8a43f600ff79 /clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | |
parent | a67cd71acdb0cd636097a74ec80e2f23ef301ada (diff) | |
download | llvm-e3033c0ce5517efddbf92a079ad1e0ca4868591f.zip llvm-e3033c0ce5517efddbf92a079ad1e0ca4868591f.tar.gz llvm-e3033c0ce5517efddbf92a079ad1e0ca4868591f.tar.bz2 |
[llvm][clang][IFS] Enhancing the llvm-ifs yaml format for symbol lists.
Prior to this change the clang interface stubs format resembled
something ending with a symbol list like this:
Symbols:
a: { Type: Func }
This was problematic because we didn't actually want a map format and
also because we didn't like that an empty symbol list required
"Symbols: {}". That is to say without the empty {} llvm-ifs would crash
on an empty list.
With this new format it is much more clear which field is the symbol
name, and instead the [] that is used to express an empty symbol vector
is optional, ie:
Symbols:
- { Name: a, Type: Func }
or
Symbols: []
or
Symbols:
This further diverges the format from existing llvm-elftapi. This is a
good thing because although the format originally came from the same
place, they are not the same in any way.
Differential Revision: https://reviews.llvm.org/D76979
Diffstat (limited to 'clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp')
-rw-r--r-- | clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp index ab7a1e3..7c59ae4 100644 --- a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp +++ b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp @@ -65,8 +65,8 @@ CreateFrontendBaseAction(CompilerInstance &CI) { case GenerateHeaderModule: return std::make_unique<GenerateHeaderModuleAction>(); case GeneratePCH: return std::make_unique<GeneratePCHAction>(); - case GenerateInterfaceIfsExpV1: - return std::make_unique<GenerateInterfaceIfsExpV1Action>(); + case GenerateInterfaceStubs: + return std::make_unique<GenerateInterfaceStubsAction>(); case InitOnly: return std::make_unique<InitOnlyAction>(); case ParseSyntaxOnly: return std::make_unique<SyntaxOnlyAction>(); case ModuleFileInfo: return std::make_unique<DumpModuleInfoAction>(); |