From 8b49854d96a6c76617f4a68f9f43960379221e59 Mon Sep 17 00:00:00 2001 From: Shuxin Yang Date: Fri, 23 Aug 2013 22:01:03 +0000 Subject: [PATCH] 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 --- docs/ReleaseNotes.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 --------------------------- -- 2.50.1