tra marked 2 inline comments as done.

================
Comment at: lib/Frontend/CompilerInstance.cpp:82-87
@@ -84,6 +81,8 @@
+void CompilerInstance::setTarget(TargetInfo *Value) { Target = Value; }
+void CompilerInstance::setAuxTarget(TargetInfo *Value) { AuxTarget = Value; }
 
 void CompilerInstance::setFileManager(FileManager *Value) {
   FileMgr = Value;
   if (Value)
     VirtualFileSystem = Value->getVirtualFileSystem();
   else
----------------
Added separate setter method for AuxTarget and moved TargetInfo creation to 
CompilerInstance::ExecuteAction as you've suggested.


http://reviews.llvm.org/D12917



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to