As discussed in the main lists, we're turning the integrated assembler
on by default on ARM.

I hope this is the right place to make that change. Tim, I'm probably
following your lead, here, for AArch64.

cheers,
--renato
diff --git a/lib/Driver/ToolChains.h b/lib/Driver/ToolChains.h
index 0368458..40e0231 100644
--- a/lib/Driver/ToolChains.h
+++ b/lib/Driver/ToolChains.h
@@ -414,7 +414,9 @@ public:
       : Generic_GCC(D, Triple, Args) {}
 
   virtual bool IsIntegratedAssemblerDefault() const {
-    if (getTriple().getArch() == llvm::Triple::aarch64)
+    if (getTriple().getArch() == llvm::Triple::aarch64 ||
+        getTriple().getArch() == llvm::Triple::arm ||
+        getTriple().getArch() == llvm::Triple::thumb)
       return true;
     return Generic_GCC::IsIntegratedAssemblerDefault();
   }
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to