diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-04-20 22:49:59 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-04-20 22:49:59 +0000 |
commit | ea84e93a4275482f1545a8dd34526b07321ebf7f (patch) | |
tree | 34d934ac6039a1bed790b14c0c67726232069df8 /Makefile.rules | |
parent | 23300aa3e387ffd7e478804568c3754f59df7942 (diff) | |
download | external_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.rules | 4 |
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 |