diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-11-21 17:10:06 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-11-21 17:10:06 +0000 |
commit | dc518e2a0ff07d6d3d22cd6ac9e8eb0cf5807cc1 (patch) | |
tree | 81977a68cc33148c29bf7607ba092fa5728d6174 /Driver/clang.cpp | |
parent | 4e8a9e8640a6717120394ee2ee5f27989757754d (diff) |
Don't turn off blocks in C++
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59827 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/clang.cpp')
-rw-r--r-- | Driver/clang.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Driver/clang.cpp b/Driver/clang.cpp index ead873447b..faa7178f25 100644 --- a/Driver/clang.cpp +++ b/Driver/clang.cpp @@ -570,9 +570,6 @@ static void InitializeLanguageStandard(LangOptions &Options, LangKind LK, } else { Options.NeXTRuntime = Target->useNeXTRuntimeAsDefault(); } - - if (Options.CPlusPlus) - Options.Blocks = 0; } static llvm::cl::opt<bool> |