]> granicus.if.org Git - clang/commit
Don't forward all assembler arguments untouched to -cc1as
authorDavid Blaikie <dblaikie@gmail.com>
Thu, 25 Jul 2013 21:19:01 +0000 (21:19 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Thu, 25 Jul 2013 21:19:01 +0000 (21:19 +0000)
commit73168db4feadbb5e8915e71369aad33292860427
treee544e5060c5aee5a2f32d857ef4024ef438b8738
parent465f0f9ee13c002df3a96b3a1bc788fa930c68bd
Don't forward all assembler arguments untouched to -cc1as

Use the same filtering for assembly arguments to -cc1as as we do for
-cc1, this allows a consistent (& more useful) diagnostic experience for
users (rather than getting an error from -cc1as (which a user shouldn't
really be thinking about) about --foo, they get an error from clang
about --foo in -Wa,)

I'm sort of surprised by the separation of -cc1as & the separate
argument handling, etc, but at least this removes a little bit of the
duplication.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@187156 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Driver/CC1AsOptions.td
lib/Driver/Tools.cpp
test/Driver/integrated-as.c
test/Driver/integrated-as.s
tools/driver/cc1as_main.cpp