mirror of
https://github.com/golang/go
synced 2024-11-19 14:54:43 -07:00
parent
3a0a86888a
commit
17ca32e9db
@ -2,10 +2,8 @@
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
#undef EXTERN
|
||||
#define EXTERN
|
||||
#include "gg.h"
|
||||
#include "opt.h"
|
||||
#include "gg.h"
|
||||
#include "opt.h"
|
||||
|
||||
void
|
||||
compile(Node *fn)
|
||||
|
@ -134,6 +134,10 @@ exprfmt(Fmt *f, Node *n, int prec)
|
||||
fmtprint(f, "(node %O)", n->op);
|
||||
break;
|
||||
|
||||
case OREGISTER:
|
||||
fmtprint(f, "%R", n->val.u.reg);
|
||||
break;
|
||||
|
||||
case OLITERAL:
|
||||
if(n->sym != S) {
|
||||
fmtprint(f, "%S", n->sym);
|
||||
|
Loading…
Reference in New Issue
Block a user