| OLD | NEW |
| 1 /* $Id: cv-dbgfmt.h 1827 2007-04-22 05:09:49Z peter $ | 1 /* |
| 2 * CodeView debugging formats implementation for Yasm | 2 * CodeView debugging formats implementation for Yasm |
| 3 * | 3 * |
| 4 * Copyright (C) 2006-2007 Peter Johnson | 4 * Copyright (C) 2006-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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 yasm_bytecode *yasm_cv__append_bc(yasm_section *sect, yasm_bytecode *bc); | 49 yasm_bytecode *yasm_cv__append_bc(yasm_section *sect, yasm_bytecode *bc); |
| 50 | 50 |
| 51 /* Symbol/Line number functions */ | 51 /* Symbol/Line number functions */ |
| 52 yasm_section *yasm_cv__generate_symline | 52 yasm_section *yasm_cv__generate_symline |
| 53 (yasm_object *object, yasm_linemap *linemap, yasm_errwarns *errwarns); | 53 (yasm_object *object, yasm_linemap *linemap, yasm_errwarns *errwarns); |
| 54 | 54 |
| 55 /* Type functions */ | 55 /* Type functions */ |
| 56 yasm_section *yasm_cv__generate_type(yasm_object *object); | 56 yasm_section *yasm_cv__generate_type(yasm_object *object); |
| 57 | 57 |
| 58 #endif | 58 #endif |
| OLD | NEW |