Author: ddunbar
Date: Tue Feb 17 12:10:15 2009
New Revision: 64775

URL: http://llvm.org/viewvc/llvm-project?rev=64775&view=rev
Log:
ccc: Assume gcc will accept piped assembler input when using generic GCC 
toolchain.

Modified:
    cfe/trunk/tools/ccc/ccclib/Tools.py

Modified: cfe/trunk/tools/ccc/ccclib/Tools.py
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/ccc/ccclib/Tools.py?rev=64775&r1=64774&r2=64775&view=diff

==============================================================================
--- cfe/trunk/tools/ccc/ccclib/Tools.py (original)
+++ cfe/trunk/tools/ccc/ccclib/Tools.py Tue Feb 17 12:10:15 2009
@@ -108,9 +108,10 @@
 
 class GCC_AssembleTool(GCC_Common_Tool):
     def __init__(self):
-        # We can't generally assume the assembler can take or output
-        # on pipes.
-        super(GCC_AssembleTool, self).__init__('gcc (as)')
+        # Assume that gcc will do any magic necessary to let the
+        # assembler take piped input.
+        super(GCC_AssembleTool, self).__init__('gcc (as)',
+                                               Tool.eFlagsPipedInput)
 
     def getGCCExtraArgs(self):
         return ['-c']


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to