diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-02-09 03:57:02 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-02-09 03:57:02 +0000 |
commit | c8233cb740d5c3ff866e7244d9d85680576c78d3 (patch) | |
tree | b20a9f79b4d4ff93d667c782f6937eef4c7a00dc | |
parent | 8631f3e86a894cc7e457953bdbb378460b96f544 (diff) | |
download | bcm5719-llvm-c8233cb740d5c3ff866e7244d9d85680576c78d3.tar.gz bcm5719-llvm-c8233cb740d5c3ff866e7244d9d85680576c78d3.zip |
Correct comment Clang C++ use in production.
This was from way-back-when (r82583) when Clang's C++ support wasn't prime-time
yet. Production quality C++ was tested experimentally from r100119 and turned
on by default in r141063.
Patch by Justin Bogner.
llvm-svn: 150148
-rw-r--r-- | clang/lib/Driver/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp index bc571b9ef1a..10eec2e1edf 100644 --- a/clang/lib/Driver/Driver.cpp +++ b/clang/lib/Driver/Driver.cpp @@ -65,7 +65,7 @@ Driver::Driver(StringRef ClangExecutable, CCCUsePCH(true), SuppressMissingInputWarning(false) { if (IsProduction) { // In a "production" build, only use clang on architectures we expect to - // work, and don't use clang C++. + // work. // // During development its more convenient to always have the driver use // clang, but we don't want users to be confused when things don't work, or |