Throwable.java (CPlusPlusDemangler): Pass -s java to c++filt to select java-style...
authorPer Bothner <per@bothner.com>
Sat, 24 Feb 2001 03:52:49 +0000 (19:52 -0800)
committerPer Bothner <bothner@gcc.gnu.org>
Sat, 24 Feb 2001 03:52:49 +0000 (19:52 -0800)
* java/lang/Throwable.java (CPlusPlusDemangler):  Pass -s java to
c++filt to select java-style output.

From-SVN: r40027

libjava/ChangeLog
libjava/java/lang/Throwable.java

index 64917f3f3fca38072d59d213e4d79e9db5fa5140..7a467f5cb43c0c5b8405ad0a0ff25f41cde80605 100644 (file)
@@ -1,3 +1,8 @@
+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:
index 4aa21399c5ab445b259e7bad21aacb1824ba0803..5c330fe315e0dd05e624318e7c565beb1eabffcd 100644 (file)
@@ -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 ();
   }