diff options
author | DJ Delorie <dj@redhat.com> | 2004-02-25 05:40:03 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2004-02-25 05:40:03 +0000 |
commit | 2d7332114ad6d55dd4a79fd55a568f3fa0595d2a (patch) | |
tree | 87e5f1d17af49aa3fe1da4eaadf545d6f9127421 /libiberty/cp-demangle.h | |
parent | 099f84cfbae3923e0e38a74d792c7a9bfc38f57a (diff) | |
download | ppe42-binutils-2d7332114ad6d55dd4a79fd55a568f3fa0595d2a.tar.gz ppe42-binutils-2d7332114ad6d55dd4a79fd55a568f3fa0595d2a.zip |
merge from gcc
Diffstat (limited to 'libiberty/cp-demangle.h')
-rw-r--r-- | libiberty/cp-demangle.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/libiberty/cp-demangle.h b/libiberty/cp-demangle.h index d3c57ce376..eea086862d 100644 --- a/libiberty/cp-demangle.h +++ b/libiberty/cp-demangle.h @@ -53,10 +53,20 @@ enum d_builtin_type_print D_PRINT_DEFAULT, /* Print as integer. */ D_PRINT_INT, - /* Print as long, with trailing `l'. */ + /* Print as unsigned integer, with trailing "u". */ + D_PRINT_UNSIGNED, + /* Print as long, with trailing "l". */ D_PRINT_LONG, + /* Print as unsigned long, with trailing "ul". */ + D_PRINT_UNSIGNED_LONG, + /* Print as long long, with trailing "ll". */ + D_PRINT_LONG_LONG, + /* Print as unsigned long long, with trailing "ull". */ + D_PRINT_UNSIGNED_LONG_LONG, /* Print as bool. */ D_PRINT_BOOL, + /* Print as float--put value in square brackets. */ + D_PRINT_FLOAT, /* Print in usual way, but here to detect void. */ D_PRINT_VOID }; |