1
0
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:
Chandler Carruth 2016-03-10 13:43:06 +00:00
parent b80088eb3c
commit d55567ce3a

View File

@ -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);
};