From 6a5660f1606716c2c68cdf804de1292a520279b0 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 30 May 2012 17:01:25 -0400 Subject: [PATCH] cmd/5l: fix PLD Was missing break. R=ken2 CC=golang-dev https://golang.org/cl/6250078 --- src/cmd/5l/asm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cmd/5l/asm.c b/src/cmd/5l/asm.c index 22695b0716..6d9d0b3f21 100644 --- a/src/cmd/5l/asm.c +++ b/src/cmd/5l/asm.c @@ -1791,6 +1791,7 @@ if(debug['G']) print("%ux: %s: arm %d\n", (uint32)(p->pc), p->from.sym->name, p- o1 |= (-p->from.offset) & 0xfff; } else o1 |= p->from.offset & 0xfff; + break; case 96: /* UNDEF */ // This is supposed to be something that stops execution. // It's not supposed to be reached, ever, but if it is, we'd -- 2.48.1