diff options
author | DJ Delorie <dj@redhat.com> | 2009-03-18 00:07:38 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-03-18 00:07:38 +0000 |
commit | cb55223679df8c9a7f5d06650455e09b8bd3e324 (patch) | |
tree | d224ef2391601825ef4ed13fa915ed77ba8054af /include/demangle.h | |
parent | d99179dbf3d1f5b3735a77970d004c4e280e691f (diff) | |
download | newlib-cb55223679df8c9a7f5d06650455e09b8bd3e324.zip newlib-cb55223679df8c9a7f5d06650455e09b8bd3e324.tar.gz newlib-cb55223679df8c9a7f5d06650455e09b8bd3e324.tar.bz2 |
merge from gcc
Diffstat (limited to 'include/demangle.h')
-rw-r--r-- | include/demangle.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/demangle.h b/include/demangle.h index 28c69f5..eb39c7c 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; |