Commit b80b8cfd by Per Bothner Committed by Per Bothner

Throwable.java (CPlusPlusDemangler): Pass -s java to c++filt to select java-style output.


	* java/lang/Throwable.java (CPlusPlusDemangler):  Pass -s java to
	c++filt to select java-style output.

From-SVN: r40027
parent e4087691
2001-02-23 Per Bothner <per@bothner.com>
* java/lang/Throwable.java (CPlusPlusDemangler): Pass -s java to
c++filt to select java-style output.
2001-02-22 Bryce McKinlay <bryce@albatross.co.nz>
Fix for PR java/2040:
......
......@@ -57,7 +57,7 @@ class CPlusPlusDemangler extends OutputStream
CPlusPlusDemangler (PrintWriter writer) throws IOException
{
p = writer;
proc = Runtime.getRuntime ().exec ("c++filt");
proc = Runtime.getRuntime ().exec ("c++filt -s java");
procOut = proc.getOutputStream ();
procIn = proc.getInputStream ();
}
......
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