aboutsummaryrefslogtreecommitdiff
path: root/libgo
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2018-01-31 18:25:17 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2018-01-31 18:25:17 +0000
commit9734500e9b7e9303e1d8bd4785cca4a82d9656af (patch)
treeca1a65cd6f4511783565a842275a9216671f74cc /libgo
parent382ce98374d2625d0f5cab3c7cb578aee7a5889c (diff)
downloadgcc-9734500e9b7e9303e1d8bd4785cca4a82d9656af.zip
gcc-9734500e9b7e9303e1d8bd4785cca4a82d9656af.tar.gz
gcc-9734500e9b7e9303e1d8bd4785cca4a82d9656af.tar.bz2
runtime: fix type descriptor name in C code
I forgot to update the name of the map[string]bool type descriptor used in go-fieldtrack.c. This didn't cause any errors because it's a weak symbol, and the current testsuite has no field tracking tests. Reviewed-on: https://go-review.googlesource.com/91096 From-SVN: r257249
Diffstat (limited to 'libgo')
-rw-r--r--libgo/runtime/go-fieldtrack.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/libgo/runtime/go-fieldtrack.c b/libgo/runtime/go-fieldtrack.c
index 7be259e..4ac0a34 100644
--- a/libgo/runtime/go-fieldtrack.c
+++ b/libgo/runtime/go-fieldtrack.c
@@ -46,7 +46,9 @@ extern void *mapassign (const struct __go_map_type *, void *hmap,
__asm__ (GOSYM_PREFIX "runtime.mapassign");
// The type descriptor for map[string] bool. */
-extern const char __go_td_MN6_string__N4_bool[] __attribute__ ((weak));
+extern const char map_string_bool[] __attribute__ ((weak));
+extern const char map_string_bool[]
+ __asm__ (GOSYM_PREFIX "type..map.6string.7bool");
void runtime_Fieldtrack (void *) __asm__ (GOSYM_PREFIX "runtime.Fieldtrack");
@@ -58,7 +60,7 @@ runtime_Fieldtrack (void *m)
const char *prefix;
size_t prefix_len;
- if (__go_td_MN6_string__N4_bool == NULL)
+ if (map_string_bool == NULL)
return;
p = __data_start;
@@ -107,7 +109,7 @@ runtime_Fieldtrack (void *m)
s.str = (const byte *) q1;
s.len = q2 - q1;
- p = mapassign((const void*) __go_td_MN6_string__N4_bool, m, &s);
+ p = mapassign((const void*) map_string_bool, m, &s);
*(_Bool*)p = 1;
}