LEFT | RIGHT |
(Both sides are equal) |
1 // Copyright 2011 The Go Authors. All rights reserved. | 1 // Copyright 2011 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 #include <u.h> | 5 #include <u.h> |
6 #include <libc.h> | 6 #include <libc.h> |
7 #include "go.h" | 7 #include "go.h" |
8 #include "opnames.h" | 8 #include "opnames.h" |
9 | 9 |
10 // | 10 // |
(...skipping 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1682 dumplist(char *s, NodeList *l) | 1682 dumplist(char *s, NodeList *l) |
1683 { | 1683 { |
1684 print("%s%+H\n", s, l); | 1684 print("%s%+H\n", s, l); |
1685 } | 1685 } |
1686 | 1686 |
1687 void | 1687 void |
1688 dump(char *s, Node *n) | 1688 dump(char *s, Node *n) |
1689 { | 1689 { |
1690 print("%s [%p]%+N\n", s, n, n); | 1690 print("%s [%p]%+N\n", s, n, n); |
1691 } | 1691 } |
LEFT | RIGHT |