diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-05-18 21:47:54 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-05-18 21:47:54 +0000 |
commit | 82b22101e668a5e4bd3ab04931378800b37c0bde (patch) | |
tree | e886010595331923f7f048b6b2fde950bd77b9f4 /clang/lib/Driver/Driver.cpp | |
parent | 74503f0b310fe8b8d2ba757e4c9f4fbded1cead2 (diff) | |
download | bcm5719-llvm-82b22101e668a5e4bd3ab04931378800b37c0bde.tar.gz bcm5719-llvm-82b22101e668a5e4bd3ab04931378800b37c0bde.zip |
Reformat a comment
llvm-svn: 72046
Diffstat (limited to 'clang/lib/Driver/Driver.cpp')
-rw-r--r-- | clang/lib/Driver/Driver.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp index f50db66c69c..3be083eb7eb 100644 --- a/clang/lib/Driver/Driver.cpp +++ b/clang/lib/Driver/Driver.cpp @@ -595,12 +595,11 @@ void Driver::BuildActions(const ArgList &Args, ActionList &Actions) const { Ty = types::TY_Object; } - // -ObjC and -ObjC++ override the default language, but only - // -for "source files". We just treat everything that isn't a - // -linker input as a source file. + // -ObjC and -ObjC++ override the default language, but only for "source + // files". We just treat everything that isn't a linker input as a + // source file. // - // FIXME: Clean this up if we move the phase sequence into the - // type. + // FIXME: Clean this up if we move the phase sequence into the type. if (Ty != types::TY_Object) { if (Args.hasArg(options::OPT_ObjC)) Ty = types::TY_ObjC; |