aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarf.h
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1996-12-09 12:36:06 -0800
committerJim Wilson <wilson@gcc.gnu.org>1996-12-09 12:36:06 -0800
commitb925394ae6fa25cb868824eaed0f7b4ccf4190f2 (patch)
treec1af30170bbe66a37e5f81393b4335167ca8a01b /gcc/dwarf.h
parentc21ee92759d1fc35f638cf4f589871d1759e057c (diff)
downloadgcc-b925394ae6fa25cb868824eaed0f7b4ccf4190f2.zip
gcc-b925394ae6fa25cb868824eaed0f7b4ccf4190f2.tar.gz
gcc-b925394ae6fa25cb868824eaed0f7b4ccf4190f2.tar.bz2
(enum dwarf_location_atom): Add OP_MULT.
From-SVN: r13255
Diffstat (limited to 'gcc/dwarf.h')
-rw-r--r--gcc/dwarf.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/dwarf.h b/gcc/dwarf.h
index 014a4fc..6aca017 100644
--- a/gcc/dwarf.h
+++ b/gcc/dwarf.h
@@ -180,7 +180,11 @@ enum dwarf_location_atom {
OP_CONST = 0x04,
OP_DEREF2 = 0x05,
OP_DEREF4 = 0x06,
- OP_ADD = 0x07
+ OP_ADD = 0x07,
+
+ /* GNU extensions. */
+
+ OP_MULT = 0x80
};
#define OP_LO_USER 0x80 /* implementation-defined range start */