aboutsummaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/parse.c b/parse.c
index 104ca1d..6e22e1f 100644
--- a/parse.c
+++ b/parse.c
@@ -381,7 +381,6 @@ static Ref
parseref()
{
Con c;
- int i;
memset(&c, 0, sizeof c);
switch (next()) {
@@ -405,14 +404,7 @@ parseref()
c.type = CAddr;
c.label = intern(tokval.str);
Look:
- for (i=0; i<curf->ncon; i++)
- if (curf->con[i].type == c.type
- && curf->con[i].bits.i == c.bits.i
- && curf->con[i].label == c.label)
- return CON(i);
- vgrow(&curf->con, ++curf->ncon);
- curf->con[i] = c;
- return CON(i);
+ return newcon(&c, curf);
default:
return R;
}