| OLD | NEW |
| 1 /* $Id: nasm-parser-struct.h 2277 2010-01-19 07:03:15Z peter $ | 1 /* |
| 2 * NASM-compatible parser struct header file | 2 * NASM-compatible parser struct header file |
| 3 * | 3 * |
| 4 * Copyright (C) 2002-2007 Peter Johnson | 4 * Copyright (C) 2002-2007 Peter Johnson |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| 11 * 2. Redistributions in binary form must reproduce the above copyright | 11 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 */ | 76 */ |
| 77 /*@null@*/ yasm_expr *absstart; | 77 /*@null@*/ yasm_expr *absstart; |
| 78 | 78 |
| 79 /* Current location inside an absolute section (including the start). | 79 /* Current location inside an absolute section (including the start). |
| 80 * NULL if not in an absolute section. | 80 * NULL if not in an absolute section. |
| 81 */ | 81 */ |
| 82 /*@null@*/ yasm_expr *abspos; | 82 /*@null@*/ yasm_expr *abspos; |
| 83 } yasm_parser_nasm; | 83 } yasm_parser_nasm; |
| 84 | 84 |
| 85 #endif | 85 #endif |
| OLD | NEW |