date and time created 82/01/18 19:20:06 by linton
authorMark Linton <linton@ucbvax.Berkeley.EDU>
Tue, 19 Jan 1982 11:20:06 +0000 (03:20 -0800)
committerMark Linton <linton@ucbvax.Berkeley.EDU>
Tue, 19 Jan 1982 11:20:06 +0000 (03:20 -0800)
SCCS-vsn: usr.bin/pascal/pdx/breakpoint/bp.rep 1.1

usr/src/usr.bin/pascal/pdx/breakpoint/bp.rep [new file with mode: 0644]

diff --git a/usr/src/usr.bin/pascal/pdx/breakpoint/bp.rep b/usr/src/usr.bin/pascal/pdx/breakpoint/bp.rep
new file mode 100644 (file)
index 0000000..e0cf04a
--- /dev/null
@@ -0,0 +1,21 @@
+/* Copyright (c) 1982 Regents of the University of California */
+
+static char sccsid[] = "@(#)bp.rep 1.1 %G%";
+
+/*
+ * breakpoint representation
+ */
+
+typedef struct bpinfo {
+       unsigned int bpid;
+       ADDRESS bpaddr; 
+       BPTYPE bptype;
+       SYM *bpblock;
+       NODE *bpcond;
+       NODE *bpnode;
+       LINENO bpline;
+       struct bpinfo *bpnext;
+} BPINFO;
+
+BPINFO *bphead;
+BPINFO *newbp();