diff options
author | Ian Lance Taylor <iant@golang.org> | 2020-10-26 15:40:42 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2020-10-27 11:01:02 -0700 |
commit | 6f33e2d8427f347ed265e1c0e11523a650e465a6 (patch) | |
tree | b1a35d23dd6278696f86374abefe3403f06451f2 /gcc | |
parent | 54380d42e6fb8da702fc57264700c81183145d39 (diff) | |
download | gcc-6f33e2d8427f347ed265e1c0e11523a650e465a6.zip gcc-6f33e2d8427f347ed265e1c0e11523a650e465a6.tar.gz gcc-6f33e2d8427f347ed265e1c0e11523a650e465a6.tar.bz2 |
compiler: remove unused Type::in_heap_ member variable
This member variable was added in https://golang.org/cl/46490, but it
was never used. The code uses Named_type::in_heap_ instead.
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/265257
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/go/gofrontend/MERGE | 2 | ||||
-rw-r--r-- | gcc/go/gofrontend/types.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index c3a45c8..6caece3 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -66657f88f820f2b0cab3c1c0a7d8b7f8923af7fb +4c1e7a083bdea02759cd5d2054038fb8a4a55ec8 The first line of this file holds the git revision number of the last merge done from the gofrontend repository. diff --git a/gcc/go/gofrontend/types.h b/gcc/go/gofrontend/types.h index ef81589..ccd1268 100644 --- a/gcc/go/gofrontend/types.h +++ b/gcc/go/gofrontend/types.h @@ -1426,8 +1426,6 @@ class Type // The GC symbol for this type. This starts out as NULL and // is filled in as needed. Bvariable* gc_symbol_var_; - // Whether this type can appear in the heap. - bool in_heap_; }; // Type hash table operations, treating aliases as identical to the |