From: rguenth Date: Wed, 30 Sep 2015 12:52:37 +0000 (+0000) Subject: 2015-09-30 Richard Biener X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c2ecb89de129299547912169a310e23d0c9bad0;p=thirdparty%2Fgcc.git 2015-09-30 Richard Biener * builtins.c: Add comment that no new simplifications shouldd be added here. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@228290 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0b3ce92c0e42..a4dfd3afe516 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-09-30 Richard Biener + + * builtins.c: Add comment that no new simplifications shouldd + be added here. + 2015-09-30 Marek Polacek PR tree-optimization/67690 diff --git a/gcc/builtins.c b/gcc/builtins.c index 15928109247a..2ff1a8c82bbb 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ +/* Legacy warning! Please add no further builtin simplifications here + (apart from pure constant folding) - builtin simplifications should go + to match.pd or gimple-fold.c instead. */ + #include "config.h" #include "system.h" #include "coretypes.h"