summaryrefslogtreecommitdiff
path: root/include/demangle.h
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2009-03-18 00:07:49 +0000
committerDJ Delorie <dj@delorie.com>2009-03-18 00:07:49 +0000
commit389d9165c276a28eece8de08003ab91217462300 (patch)
tree5b854d5fd496ff4ae5c614184ba2a55dc41a3de2 /include/demangle.h
parent11b052083b90e7f98b1d4939a1d0f65f923d56d5 (diff)
downloadbinutils-redhat-389d9165c276a28eece8de08003ab91217462300.tar.gz
merge from gcc
Diffstat (limited to 'include/demangle.h')
-rw-r--r--include/demangle.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/demangle.h b/include/demangle.h
index 28c69f5e78..eb39c7c13c 100644
--- a/include/demangle.h
+++ b/include/demangle.h
@@ -221,6 +221,8 @@ enum demangle_component_type
/* A template parameter. This holds a number, which is the template
parameter index. */
DEMANGLE_COMPONENT_TEMPLATE_PARAM,
+ /* A function parameter. This holds a number, which is the index. */
+ DEMANGLE_COMPONENT_FUNCTION_PARAM,
/* A constructor. This holds a name and the kind of
constructor. */
DEMANGLE_COMPONENT_CTOR,
@@ -466,10 +468,10 @@ struct demangle_component
int len;
} s_string;
- /* For DEMANGLE_COMPONENT_TEMPLATE_PARAM. */
+ /* For DEMANGLE_COMPONENT_*_PARAM. */
struct
{
- /* Template parameter index. */
+ /* Parameter index. */
long number;
} s_number;