1*5471Slinton/* Copyright (c) 1982 Regents of the University of California */
2*5471Slinton
3*5471Slintonstatic char sccsid[] = "@(#)bp.rep 1.1 01/18/82";
4*5471Slinton
5*5471Slinton/*
6*5471Slinton * breakpoint representation
7*5471Slinton */
8*5471Slinton
9*5471Slintontypedef struct bpinfo {
10*5471Slinton	unsigned int bpid;
11*5471Slinton	ADDRESS bpaddr;
12*5471Slinton	BPTYPE bptype;
13*5471Slinton	SYM *bpblock;
14*5471Slinton	NODE *bpcond;
15*5471Slinton	NODE *bpnode;
16*5471Slinton	LINENO bpline;
17*5471Slinton	struct bpinfo *bpnext;
18*5471Slinton} BPINFO;
19*5471Slinton
20*5471SlintonBPINFO *bphead;
21*5471SlintonBPINFO *newbp();
22