]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
fix bootstrap due to unused variable warning
authorspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Sep 2015 19:19:47 +0000 (19:19 +0000)
committerspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Sep 2015 19:19:47 +0000 (19:19 +0000)
  * sese.c (invariant_in_sese_p_rec): Remove unused variable.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@228218 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/sese.c

index ccfd4a8252fb021067987f491aa4e789e3500fa4..89b9e167593c9ba0aaa21cde856a4a9bed0a6229 100644 (file)
@@ -1,3 +1,8 @@
+2015-09-28  Aditya Kumar  <aditya.k7@samsung.com>
+            Sebastian Pop  <s.pop@samsung.com>
+
+       * sese.c (invariant_in_sese_p_rec): Remove unused variable.
+
 2015-09-28  Aditya Kumar  <aditya.k7@samsung.com>
             Sebastian Pop  <s.pop@samsung.com>
 
index 2050e2d2a1f1101d6796917da7df57e54d90234f..ed45410faddc060582d91158784791059578860e 100644 (file)
@@ -778,7 +778,7 @@ invariant_in_sese_p_rec (tree t, sese region)
     return false;
 
   /* VDEF is variant when it is in the region.  */
-  if (tree vdef = gimple_vdef (stmt))
+  if (gimple_vdef (stmt))
     return false;
 
   /* A VUSE may or may not be variant following the VDEFs.  */