Commit 358ae207 authored by Russ Cox's avatar Russ Cox

libmach: change three more BGET macro invocations back

Various compilers complain about the macro expansion not
being used. I fixed a few yesterday. More today.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/13643044
parent 44870547
...@@ -127,7 +127,7 @@ addr(Biobuf *bp) ...@@ -127,7 +127,7 @@ addr(Biobuf *bp)
break; break;
case D_REGREG: case D_REGREG:
case D_REGREG2: case D_REGREG2:
BGETC(bp); Bgetc(bp);
break; break;
case D_CONST2: case D_CONST2:
Bgetle4(bp); // fall through Bgetle4(bp); // fall through
...@@ -167,5 +167,5 @@ static void ...@@ -167,5 +167,5 @@ static void
skip(Biobuf *bp, int n) skip(Biobuf *bp, int n)
{ {
while (n-- > 0) while (n-- > 0)
BGETC(bp); Bgetc(bp);
} }
...@@ -169,5 +169,5 @@ static void ...@@ -169,5 +169,5 @@ static void
skip(Biobuf *bp, int n) skip(Biobuf *bp, int n)
{ {
while (n-- > 0) while (n-- > 0)
BGETC(bp); Bgetc(bp);
} }
...@@ -166,5 +166,5 @@ static void ...@@ -166,5 +166,5 @@ static void
skip(Biobuf *bp, int n) skip(Biobuf *bp, int n)
{ {
while (n-- > 0) while (n-- > 0)
BGETC(bp); Bgetc(bp);
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment