From 9f5092884474c5a171c422f9131e74765964d62f Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Thu, 30 Jan 2020 13:27:37 -0800 Subject: Fix links to issue tracker --- qbe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qbe.c b/qbe.c index 30edd2d..868fb32 100644 --- a/qbe.c +++ b/qbe.c @@ -901,7 +901,7 @@ funcexpr(struct func *f, struct expr *e) funcinst(f, IVASTART, NULL, l); break; case BUILTINVAARG: - /* https://todo.sr.ht/~mcf/cc-issues/52 */ + /* https://todo.sr.ht/~mcf/cproc/52 */ if (!(e->type->prop & PROPSCALAR)) error(&tok.loc, "va_arg with non-scalar type is not yet supported"); l = funcexpr(f, e->base); @@ -1291,7 +1291,7 @@ emitdata(struct decl *d, struct init *init) /* XXX: Currently, if multiple union members are initialized, these assertions may not hold. - (https://todo.sr.ht/~mcf/cc-issues/38) + (https://todo.sr.ht/~mcf/cproc/38) */ assert(cur->expr->kind == EXPRSTRING); assert(init->expr->kind == EXPRCONST); -- cgit v1.2.3