mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
[CG] Try adding an explicit move constructor to see if that helps the
one build bot that is crashing on this code. llvm-svn: 263110
This commit is contained in:
parent
b80088eb3c
commit
d55567ce3a
@ -312,6 +312,7 @@ class CallGraphPrinterPass : public PassBase<CallGraphPrinterPass> {
|
||||
|
||||
public:
|
||||
explicit CallGraphPrinterPass(raw_ostream &OS) : OS(OS) {}
|
||||
CallGraphPrinterPass(CallGraphPrinterPass &&Arg) : OS(Arg.OS) {}
|
||||
PreservedAnalyses run(Module &M, AnalysisManager<Module> *AM);
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user