aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.rules
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-04-20 22:49:59 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-04-20 22:49:59 +0000
commitea84e93a4275482f1545a8dd34526b07321ebf7f (patch)
tree34d934ac6039a1bed790b14c0c67726232069df8 /Makefile.rules
parent23300aa3e387ffd7e478804568c3754f59df7942 (diff)
downloadexternal_llvm-ea84e93a4275482f1545a8dd34526b07321ebf7f.zip
external_llvm-ea84e93a4275482f1545a8dd34526b07321ebf7f.tar.gz
external_llvm-ea84e93a4275482f1545a8dd34526b07321ebf7f.tar.bz2
No, we are not avoiding -O3, just -fstrict-aliasing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69633 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 9324fe6..cfa2f0c 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -247,8 +247,8 @@ ifeq ($(ENABLE_OPTIMIZED),1)
endif
# Darwin requires -fstrict-aliasing to be explicitly enabled.
- # Avoid -O3 on Darwin for now, there are unresolved issues with
- # -fstrict-aliasing and ipa-type-escape radr://6756684
+ # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
+ # with -fstrict-aliasing and ipa-type-escape radr://6756684
#ifeq ($(OS),Darwin)
# EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
#endif