diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2008-12-29 13:36:24 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2008-12-29 13:36:24 +0100 |
commit | 67d0afe9011dfe0e010113694e4577451855075a (patch) | |
tree | 6bde174ddb959fba106f35ec4e7f034fcb898ece /gcc/dse.c | |
parent | 7c280c72a3200ce18434a3bf4c9318c6e3e447ef (diff) | |
download | gcc-67d0afe9011dfe0e010113694e4577451855075a.tar.gz |
re PR middle-end/38652 (dse.c: In function get_call_args: dse.c:2309: error: target undeclared)
PR middle-end/38652
* dse.c: Include target.h.
* Makefile.in (dse.o): Depend on $(TARGET_H).
From-SVN: r142949
Diffstat (limited to 'gcc/dse.c')
-rw-r--r-- | gcc/dse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/dse.c b/gcc/dse.c index 95a351b59a6..666a2f00164 100644 --- a/gcc/dse.c +++ b/gcc/dse.c @@ -45,6 +45,7 @@ along with GCC; see the file COPYING3. If not see #include "dse.h" #include "optabs.h" #include "dbgcnt.h" +#include "target.h" /* This file contains three techniques for performing Dead Store Elimination (dse). |