diff options
author | Chris Manghane <cmang@google.com> | 2016-05-06 17:37:55 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2016-05-06 17:37:55 +0000 |
commit | 2a30f87f75644bb5ff3e8f42d4922bef99511b4a (patch) | |
tree | 1255e8b4256fd282635b211389232f6921649732 /gcc/go/Make-lang.in | |
parent | a89f917b6714d53e3fb4ba6ae67f71e75d20b907 (diff) | |
download | gcc-2a30f87f75644bb5ff3e8f42d4922bef99511b4a.zip gcc-2a30f87f75644bb5ff3e8f42d4922bef99511b4a.tar.gz gcc-2a30f87f75644bb5ff3e8f42d4922bef99511b4a.tar.bz2 |
escape: Add skeleton for gc analysis.
Introduces a skeleton replacement escape analysis
which contains four different phases extracted from the escape
analysis implementation in gc/esc.go. Also introduces the
Escape_context each phase uses to make decisions.
Reviewed-on: https://go-review.googlesource.com/18220
From-SVN: r235982
Diffstat (limited to 'gcc/go/Make-lang.in')
-rw-r--r-- | gcc/go/Make-lang.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/go/Make-lang.in b/gcc/go/Make-lang.in index df27e21..d5b2a77 100644 --- a/gcc/go/Make-lang.in +++ b/gcc/go/Make-lang.in @@ -50,6 +50,7 @@ go-warn = $(STRICT_WARN) GO_OBJS = \ go/ast-dump.o \ + go/escape.o \ go/export.o \ go/expressions.o \ go/go-backend.o \ |