aboutsummaryrefslogtreecommitdiffstats
path: root/vm_dump.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-25 23:55:58 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-25 23:55:58 +0000
commit3bd0fd118d11767a1a5d37320372a39802b4b206 (patch)
tree116a2aa7bcae407598a96351eac711d5ff348dbb /vm_dump.c
parent633b2fc9d738ff11b28f2cd85abb73fbc85ee091 (diff)
downloadruby-3bd0fd118d11767a1a5d37320372a39802b4b206.tar.gz
temporaly change/add to debug on powerpc64-linux
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_dump.c')
-rw-r--r--vm_dump.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/vm_dump.c b/vm_dump.c
index 96eacd80cb..f2d2c3b20f 100644
--- a/vm_dump.c
+++ b/vm_dump.c
@@ -819,15 +819,6 @@ rb_vm_bugreport(void)
fputs("\n", stderr);
}
-#if HAVE_BACKTRACE || defined(_WIN32)
- fprintf(stderr, "-- C level backtrace information "
- "-------------------------------------------\n");
- rb_print_backtrace();
-
-
- fprintf(stderr, "\n");
-#endif /* HAVE_BACKTRACE */
-
if (other_runtime_info || vm) {
fprintf(stderr, "-- Other runtime information "
"-----------------------------------------------\n\n");
@@ -907,5 +898,14 @@ rb_vm_bugreport(void)
fprintf(stderr, "\n");
}
#endif /* __FreeBSD__ */
+#if HAVE_BACKTRACE || defined(_WIN32)
+ fprintf(stderr, "-- C level backtrace information "
+ "-------------------------------------------\n");
+ rb_print_backtrace();
+
+
+ fprintf(stderr, "\n");
+#endif /* HAVE_BACKTRACE */
+
}
}