projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dfad822
)
Add missing file
author
Martin Liska
<marxin@gcc.gnu.org>
Wed, 30 Nov 2016 09:26:03 +0000
(09:26 +0000)
committer
Martin Liska
<marxin@gcc.gnu.org>
Wed, 30 Nov 2016 09:26:03 +0000
(09:26 +0000)
From-SVN: r243002
gcc/testsuite/gcc.dg/pr78582.c
[new file with mode: 0644]
patch
|
blob
diff --git a/gcc/testsuite/gcc.dg/pr78582.c
b/gcc/testsuite/gcc.dg/pr78582.c
new file mode 100644
(file)
index 0000000..
3084e3b
--- /dev/null
+++ b/
gcc/testsuite/gcc.dg/pr78582.c
@@ -0,0
+1,18
@@
+/* PR target/78582. */
+/* { dg-options "-fprofile-generate" } */
+/* { dg-compile } */
+
+#include <setjmp.h>
+
+void reader_loop () {}
+
+int
+main (int argc, char argv, char env)
+{
+ int a;
+ sigsetjmp (0, 0);
+ argc = a = argc;
+ reader_loop ();
+
+ return 0;
+}