diff options
author | Richard Biener <rguenther@suse.de> | 2015-09-30 12:52:37 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2015-09-30 12:52:37 +0000 |
commit | 25ab3b0a301f115c7d9e0c41dc13ade6f3c69c26 (patch) | |
tree | 4670454ccab9b8d4963f26c0960b90b436eb163e /gcc/builtins.c | |
parent | 20a44562a630bf59b9d3123cf4dc753634d9a8fa (diff) | |
download | gcc-25ab3b0a301f115c7d9e0c41dc13ade6f3c69c26.zip gcc-25ab3b0a301f115c7d9e0c41dc13ade6f3c69c26.tar.gz gcc-25ab3b0a301f115c7d9e0c41dc13ade6f3c69c26.tar.bz2 |
builtins.c: Add comment that no new simplifications shouldd be added here.
2015-09-30 Richard Biener <rguenther@suse.de>
* builtins.c: Add comment that no new simplifications shouldd
be added here.
From-SVN: r228290
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 1592810..2ff1a8c 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 <http://www.gnu.org/licenses/>. */ +/* 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" |