diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-12-01 18:34:47 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-12-01 18:34:47 +0000 |
commit | 5fd5468af403b6ab570a21eb59a004b265708799 (patch) | |
tree | f8b9ecaeb0856e614b5489d931efad5f0c9db751 | |
parent | 473e70de24106ffb6f6345f1377988449d32c91e (diff) |
Enable blocks in C++
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60361 91177308-0d34-0410-b5e6-96231b3b80d8
-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 0941ed4670..34fd62fd9d 100644 --- a/Driver/clang.cpp +++ b/Driver/clang.cpp @@ -571,9 +571,6 @@ static void InitializeLanguageStandard(LangOptions &Options, LangKind LK, } else { Options.NeXTRuntime = Target->useNeXTRuntimeAsDefault(); } - - if (Options.CPlusPlus) - Options.Blocks = 0; } static llvm::cl::opt<bool> |