LEFT | RIGHT |
(Both sides are equal) |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 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 // Parse stabs debug info. | 5 // Parse stabs debug info. |
6 | 6 |
7 #include "a.h" | 7 #include "a.h" |
8 | 8 |
9 int stabsdebug = 1; | 9 int stabsdebug = 1; |
10 | 10 |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 | 447 |
448 // parse the definition. | 448 // parse the definition. |
449 if(name[0] == '\0') | 449 if(name[0] == '\0') |
450 name = nil; | 450 name = nil; |
451 if(parsedef(&p, name) == nil) | 451 if(parsedef(&p, name) == nil) |
452 goto Bad; | 452 goto Bad; |
453 if(*p != '\0') | 453 if(*p != '\0') |
454 goto Bad; | 454 goto Bad; |
455 } | 455 } |
456 | 456 |
LEFT | RIGHT |