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 | 683ca381bf2b8dffab535c89d25250518bbec3a0 (patch) | |
tree | 6eb167b829525d72d7d49264c04cb90f310ec086 /lib/Driver/Driver.cpp | |
parent | 94f497b0724601539dd02637aabda584b41e200e (diff) |
Reformat a comment
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72046 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r-- | lib/Driver/Driver.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index f50db66c69..3be083eb7e 100644 --- a/lib/Driver/Driver.cpp +++ b/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; |