summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20050811-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/20050811-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/20050811-1.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/20050811-1.c b/gcc/testsuite/gcc.dg/20050811-1.c
new file mode 100644
index 000000000..a9f860bb8
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/20050811-1.c
@@ -0,0 +1,20 @@
+/* Test whether -dv -fdump-rtl-all doesn't crash. */
+/* { dg-do compile } */
+/* { dg-options "-O2 -dv -fdump-rtl-all" } */
+
+int foo (void)
+{
+ return 6;
+}
+
+int bar (int x)
+{
+ if (x < 0)
+ return foo () + 8;
+ else if (x > 0)
+ return 2 * foo ();
+ else
+ return foo ();
+}
+
+// { dg-final { cleanup-rtl-dump "*" } }