diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-10-18 21:40:58 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-10-18 21:40:58 +0000 |
commit | da6cf191f748d879f8be3c00d745b3bfe6e5495b (patch) | |
tree | dfe1d533c1e9dab17d08ca538f808ea3dd632eea /gcc/Makefile.in | |
parent | f2cb87fd7ee57bc3e074db3452f96c3a19d9db6e (diff) | |
download | gcc-da6cf191f748d879f8be3c00d745b3bfe6e5495b.tar.gz |
* Makefile.in (OBJS): Add gimple-ssa-warn-alloca.o.
* passes.def: Add two instances of pass_walloca.
* tree-pass.h (make_pass_walloca): New.
* gimple-ssa-warn-walloca.c: New file.
* doc/invoke.texi: Document -Walloca, -Walloca-larger-than=, and
-Wvla-larger-than= options.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@241318 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index c512cd70970..c08da80be27 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1298,6 +1298,7 @@ OBJS = \ gimple-ssa-split-paths.o \ gimple-ssa-strength-reduction.o \ gimple-ssa-sprintf.o \ + gimple-ssa-warn-alloca.o \ gimple-streamer-in.o \ gimple-streamer-out.o \ gimple-walk.o \ |