summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--output/outelf32.c4
-rw-r--r--output/outelf64.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/output/outelf32.c b/output/outelf32.c
index d1c0ec52..adf6c34c 100644
--- a/output/outelf32.c
+++ b/output/outelf32.c
@@ -1583,6 +1583,10 @@ static void debug32_typevalue(int32_t type)
ssize = 16;
stype = STT_OBJECT;
break;
+ case TY_YWORD:
+ ssize = 32;
+ stype = STT_OBJECT;
+ break;
case TY_COMMON:
ssize = 0;
stype = STT_COMMON;
diff --git a/output/outelf64.c b/output/outelf64.c
index d0498947..a7c51b8a 100644
--- a/output/outelf64.c
+++ b/output/outelf64.c
@@ -1632,6 +1632,10 @@ static void debug64_typevalue(int32_t type)
ssize = 16;
stype = STT_OBJECT;
break;
+ case TY_YWORD:
+ ssize = 32;
+ stype = STT_OBJECT;
+ break;
case TY_COMMON:
ssize = 0;
stype = STT_COMMON;