2013-01-17 Jan Hubicka <jh@suse.cz>
- PR tree-optimization/51083
+ PR tree-optimization/55273
* loop-iv.c (iv_number_of_iterations): Consider zero iteration case.
2012-01-17 Uros Bizjak <ubizjak@gmail.com>
2013-01-17 Jan Hubicka <jh@suse.cz>
- PR tree-optimization/51083
- * gcc.c-torture/compile/pr51083.c: New testcase.
+ PR tree-optimization/55273
+ * gcc.c-torture/compile/pr55273.c: New testcase.
2012-01-17 Uros Bizjak <ubizjak@gmail.com>
+++ /dev/null
-extern int debug_threads;
-extern void sigsuspend (void);
-void my_waitpid (int flags, int wnohang)
-{
- while (1)
- {
- if (flags & 0x80000000)
- {
- if (wnohang)
- break;
- if (debug_threads)
- __builtin_puts ("blocking\n");
- sigsuspend ();
- }
- flags ^= 0x80000000;
- }
-}
-
--- /dev/null
+extern int debug_threads;
+extern void sigsuspend (void);
+void my_waitpid (int flags, int wnohang)
+{
+ while (1)
+ {
+ if (flags & 0x80000000)
+ {
+ if (wnohang)
+ break;
+ if (debug_threads)
+ __builtin_puts ("blocking\n");
+ sigsuspend ();
+ }
+ flags ^= 0x80000000;
+ }
+}
+