diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2020-01-07 23:13:24 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2020-01-07 23:13:24 +0000 |
commit | 81f025b580be6ce933f0ecb1f96445a3bb4fff4b (patch) | |
tree | 593e3698208109bb3b3071e6498865ec327c4f34 /libgo/Makefile.am | |
parent | 7010bcd1c80e2a89f43c064ba21289df8c67a84c (diff) | |
download | gcc-81f025b580be6ce933f0ecb1f96445a3bb4fff4b.zip gcc-81f025b580be6ce933f0ecb1f96445a3bb4fff4b.tar.gz gcc-81f025b580be6ce933f0ecb1f96445a3bb4fff4b.tar.bz2 |
compiler, runtime: stop using __go_runtime_error
Use specific panic functions instead, which are mostly already in the
runtime package.
Also correct "defer nil" to panic when we execute the defer, rather
than throw when we queue it.
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/213642
From-SVN: r279979
Diffstat (limited to 'libgo/Makefile.am')
-rw-r--r-- | libgo/Makefile.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libgo/Makefile.am b/libgo/Makefile.am index 1700941..4b2dd58 100644 --- a/libgo/Makefile.am +++ b/libgo/Makefile.am @@ -438,7 +438,6 @@ runtime_files = \ runtime/go-now.c \ runtime/go-nosys.c \ runtime/go-reflect-call.c \ - runtime/go-runtime-error.c \ runtime/go-setenv.c \ runtime/go-signal.c \ runtime/go-unsafe-pointer.c \ |