* g++.dg/tree-ssa/pr61034.C: Add temporary; fix template.
authorJan Hubicka <hubicka@ucw.cz>
Tue, 28 Apr 2015 14:13:59 +0000 (16:13 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Tue, 28 Apr 2015 14:13:59 +0000 (14:13 +0000)
From-SVN: r222527

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/tree-ssa/pr61034.C

index fcd850ce456057504bd7e7bc73bc8ee7a6be6974..d38593d1d326ea583441cd86573cdc15ded5f4e0 100644 (file)
@@ -1,3 +1,7 @@
+2015-04-28  Jan Hubicka  <hubicka@ucw.cz>
+
+       * g++.dg/tree-ssa/pr61034.C: Add temporary; fix template.
+
 2015-04-28  Marek Polacek  <polacek@redhat.com>
 
        PR c/65901
index 91e694eae141a32178127a181c0cde294f87355e..b025b68eaa00d2c76f8bc446797b86b7ed348546 100644 (file)
@@ -34,7 +34,8 @@ inline I operator- (I a, I const&b) { return a -= b; }
 inline bool operator< (I const&a, I const&b) { return a.o->num < b.o->num; }
 
 bool f(I a, I b, I c, I d) {
-    return (a * d - b * c) * (a * b - c * d) < 42;
+    I tmp = (a * d - b * c) * (a * b - c * d);
+    return tmp < 42;
 }
 
 // We should be able to CSE most references to count and thus remove