From: Shuxin Yang Date: Fri, 23 Aug 2013 22:01:03 +0000 (+0000) Subject: Add note about following two commands are no longer equivalent. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b49854d96a6c76617f4a68f9f43960379221e59;p=clang Add note about following two commands are no longer equivalent. - "clang -O3 -flto a.c -c", and - "clang -emit-llvm a.c -c" Thank Rafael for tips. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@189150 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst index 8dd26faab9..df4ee1b5a0 100644 --- a/docs/ReleaseNotes.rst +++ b/docs/ReleaseNotes.rst @@ -61,7 +61,8 @@ New Compiler Flags - Clang no longer special cases -O4 to enable lto. Explicitly pass -flto to enable it. -- ... +- Command line "clang -O3 -flto a.c -c" and "clang -emit-llvm a.c -c" + are no longer equivalent. C Language Changes in Clang ---------------------------