diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2016-10-12 18:17:52 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2016-10-12 18:17:52 +0000 |
commit | 1ad16c52842e0513b96a0e02d2a431dc0f338c5d (patch) | |
tree | f6eaddf65fba9d031ed9b3008a3c3ba4ff0ebd0b /libgo/Makefile.am | |
parent | 2ec69f566076547b618447ba5531260c25abed3e (diff) | |
download | gcc-1ad16c52842e0513b96a0e02d2a431dc0f338c5d.zip gcc-1ad16c52842e0513b96a0e02d2a431dc0f338c5d.tar.gz gcc-1ad16c52842e0513b96a0e02d2a431dc0f338c5d.tar.bz2 |
compiler, runtime: copy string code from Go 1.7
Add compiler support for turning concatenating strings into a call to
a runtime function that takes the appropriate number of arguments.
Rename some local variables in mgc0.c to avoid macros that the new
rune.go causes to appear in runtime.inc.
Reviewed-on: https://go-review.googlesource.com/30827
From-SVN: r241074
Diffstat (limited to 'libgo/Makefile.am')
-rw-r--r-- | libgo/Makefile.am | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libgo/Makefile.am b/libgo/Makefile.am index d37bb68..be5b0ca 100644 --- a/libgo/Makefile.am +++ b/libgo/Makefile.am @@ -441,7 +441,6 @@ runtime_files = \ runtime/go-append.c \ runtime/go-assert.c \ runtime/go-assert-interface.c \ - runtime/go-byte-array-to-string.c \ runtime/go-breakpoint.c \ runtime/go-caller.c \ runtime/go-callers.c \ @@ -458,8 +457,6 @@ runtime_files = \ runtime/go-eface-val-compare.c \ runtime/go-ffi.c \ runtime/go-fieldtrack.c \ - runtime/go-int-array-to-string.c \ - runtime/go-int-to-string.c \ runtime/go-interface-compare.c \ runtime/go-interface-eface-compare.c \ runtime/go-interface-val-compare.c \ @@ -476,14 +473,10 @@ runtime_files = \ runtime/go-panic.c \ runtime/go-recover.c \ runtime/go-reflect-call.c \ - runtime/go-rune.c \ runtime/go-runtime-error.c \ runtime/go-setenv.c \ runtime/go-signal.c \ runtime/go-strcmp.c \ - runtime/go-string-to-byte-array.c \ - runtime/go-string-to-int-array.c \ - runtime/go-strplus.c \ runtime/go-strslice.c \ runtime/go-traceback.c \ runtime/go-type-complex.c \ @@ -529,7 +522,6 @@ runtime_files = \ reflect.c \ runtime1.c \ sigqueue.c \ - string.c \ time.c \ $(runtime_getncpu_file) |