comparison gcc/vmsdbg.h @ 67:f6334be47118

update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Mar 2011 17:18:12 +0900
parents a06113de4d67
children 04ced10e8804
comparison
equal deleted inserted replaced
65:65488c3d617d 67:f6334be47118
1 /* Definitions for the data structures and codes used in VMS debugging. 1 /* Definitions for the data structures and codes used in VMS debugging.
2 Copyright (C) 2001, 2007 Free Software Foundation, Inc. 2 Copyright (C) 2001, 2007, 2010 Free Software Foundation, Inc.
3 3
4 This file is part of GCC. 4 This file is part of GCC.
5 5
6 GCC is free software; you can redistribute it and/or modify it under 6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free 7 the terms of the GNU General Public License as published by the Free
26 structs in this file if no padding were done. The sizes after each 26 structs in this file if no padding were done. The sizes after each
27 struct are the size actually written, which is usually smaller than the 27 struct are the size actually written, which is usually smaller than the
28 size of the struct. */ 28 size of the struct. */
29 29
30 /* Header type codes. */ 30 /* Header type codes. */
31 typedef enum _DST_TYPE {DST_K_SOURCE = 155, DST_K_PROLOG = 162, 31 typedef enum _DST_TYPE {DST_K_TBG = 0x17,
32 DST_K_SOURCE = 155, DST_K_PROLOG = 162,
32 DST_K_BLKBEG = 176, DST_K_BLKEND = 177, 33 DST_K_BLKBEG = 176, DST_K_BLKEND = 177,
33 DST_K_LINE_NUM = 185, DST_K_MODBEG = 188, 34 DST_K_LINE_NUM = 185, DST_K_MODBEG = 188,
34 DST_K_MODEND = 189, DST_K_RTNBEG = 190, 35 DST_K_MODEND = 189, DST_K_RTNBEG = 190,
35 DST_K_RTNEND = 191} DST_DTYPE; 36 DST_K_RTNEND = 191} DST_DTYPE;
36 37