We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1981374 commit d231713Copy full SHA for d231713
llvm/tools/llvm-mc/llvm-mc.cpp
@@ -526,11 +526,10 @@ int main(int argc, char **argv) {
526
std::unique_ptr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
527
assert(MCII && "Unable to create instruction info!");
528
529
- auto FFA = std::make_unique<CFIFunctionFrameAnalyzer>(Ctx, *MCII);
530
-
531
std::unique_ptr<MCInstPrinter> IP;
532
if (ValidateCFI) {
533
assert(FileType == OFT_Null);
+ auto FFA = std::make_unique<CFIFunctionFrameAnalyzer>(Ctx, *MCII);
534
auto FFS = std::make_unique<CFIFunctionFrameStreamer>(Ctx, std::move(FFA));
535
TheTarget->createNullTargetStreamer(*FFS);
536
Str = std::move(FFS);
0 commit comments