PR tree-optimization/80426
* gcc.c-torture/execute/
20170429-1.c: Rename into...
* gcc.c-torture/execute/
20170419-1.c: ...this.
From-SVN: r247046
+2017-04-21 Eric Botcazou <ebotcazou@adacore.com>
+
+ PR tree-optimization/80426
+ * gcc.c-torture/execute/20170429-1.c: Rename into...
+ * gcc.c-torture/execute/20170419-1.c: ...this.
+
2017-04-20 Uros Bizjak <ubizjak@gmail.com>
PR target/79804
--- /dev/null
+/* PR tree-optimization/80426 */
+/* Testcase by <ishiura-compiler@ml.kwansei.ac.jp> */
+
+#define INT_MAX 0x7fffffff
+#define INT_MIN (-INT_MAX-1)
+
+int x;
+
+int main (void)
+{
+ volatile int a = 0;
+ volatile int b = -INT_MAX;
+ int j;
+
+ for(j = 0; j < 18; j += 1) {
+ x = ( (a == 0) != (b - (int)(INT_MIN) ) );
+ }
+
+ if (x != 0)
+ __builtin_abort ();
+
+ return 0;
+}
+
+++ /dev/null
-/* PR tree-optimization/80426 */
-/* Testcase by <ishiura-compiler@ml.kwansei.ac.jp> */
-
-#define INT_MAX 0x7fffffff
-#define INT_MIN (-INT_MAX-1)
-
-int x;
-
-int main (void)
-{
- volatile int a = 0;
- volatile int b = -INT_MAX;
- int j;
-
- for(j = 0; j < 18; j += 1) {
- x = ( (a == 0) != (b - (int)(INT_MIN) ) );
- }
-
- if (x != 0)
- __builtin_abort ();
-
- return 0;
-}
-