aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarf.h
diff options
context:
space:
mode:
authorJim Wilson <wilson@cygnus.com>1996-12-09 20:36:06 +0000
committerJim Wilson <wilson@cygnus.com>1996-12-09 20:36:06 +0000
commit7a782d0f5d8edc1e50c0f87a864b236cafbafb2c (patch)
treec1af30170bbe66a37e5f81393b4335167ca8a01b /gcc/dwarf.h
parent0ac9f5bc0cfac1963e157dc77dabdec795b25a99 (diff)
(enum dwarf_location_atom): Add OP_MULT.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@13255 138bc75d-0d04-0410-961f-82ee72b054a4
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 014a4fc48b8..6aca017e6e5 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 */