[llvm] r263110 - [CG] Try adding an explicit move constructor to see if that helps the

Chandler Carruth via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 10 05:43:06 PST 2016


Author: chandlerc
Date: Thu Mar 10 07:43:06 2016
New Revision: 263110

URL: http://llvm.org/viewvc/llvm-project?rev=263110&view=rev
Log:
[CG] Try adding an explicit move constructor to see if that helps the
one build bot that is crashing on this code.

Modified:
    llvm/trunk/include/llvm/Analysis/CallGraph.h

Modified: llvm/trunk/include/llvm/Analysis/CallGraph.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/CallGraph.h?rev=263110&r1=263109&r2=263110&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/CallGraph.h (original)
+++ llvm/trunk/include/llvm/Analysis/CallGraph.h Thu Mar 10 07:43:06 2016
@@ -312,6 +312,7 @@ class CallGraphPrinterPass : public Pass
 
 public:
   explicit CallGraphPrinterPass(raw_ostream &OS) : OS(OS) {}
+  CallGraphPrinterPass(CallGraphPrinterPass &&Arg) : OS(Arg.OS) {}
   PreservedAnalyses run(Module &M, AnalysisManager<Module> *AM);
 };
 




More information about the llvm-commits mailing list