diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-17 07:07:28 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-17 07:07:28 +0000 |
commit | c5a97ec19408c3dca4b6a6385f11d8c783b94d0b (patch) | |
tree | f8eaf15cd47de7d078bfe70b2ce4d73b3f660688 /lib/Basic/Targets.cpp | |
parent | 0be42c44f0199c5023b542d6a6d2e66eb594f27d (diff) |
Move -fnext-runtime defaulting to driver (and change clang-cc default to
-fnext-runtime), instead of using getDefaultLangOptions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89058 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/Targets.cpp')
-rw-r--r-- | lib/Basic/Targets.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 6c58d0dcb2..3a4d115db2 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -158,8 +158,6 @@ static void getDarwinIPhoneOSDefines(std::vector<char> &Defs, /// GetDarwinLanguageOptions - Set the default language options for darwin. static void GetDarwinLanguageOptions(LangOptions &Opts, const llvm::Triple &Triple) { - Opts.NeXTRuntime = true; - unsigned MajorVersion = Triple.getDarwinMajorNumber(); // Blocks and stack protectors default to on for 10.6 (darwin10) and beyond. |