Commit 72fa4f0a by Per Bothner

* demangle.h (DMGL_JAVA): New option to request Java demangling.

From-SVN: r14564
parent 38fc909b
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#define DMGL_NO_OPTS 0 /* For readability... */ #define DMGL_NO_OPTS 0 /* For readability... */
#define DMGL_PARAMS (1 << 0) /* Include function args */ #define DMGL_PARAMS (1 << 0) /* Include function args */
#define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */ #define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */
#define DMGL_JAVA (1 << 2) /* Demangle as Java rather than C++. */
#define DMGL_AUTO (1 << 8) #define DMGL_AUTO (1 << 8)
#define DMGL_GNU (1 << 9) #define DMGL_GNU (1 << 9)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment