summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>2014-11-11 13:12:39 +0000
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>2014-11-11 13:12:39 +0000
commit3d4d7ad1fbc72621be934138ef326dcff994e575 (patch)
treed5e79eb5d58db620ac7bc854f753b8808505bdd3
parent15e6e014c0cefbe3ab0a15e38f000abcf8053c64 (diff)
downloadgcc-3d4d7ad1fbc72621be934138ef326dcff994e575.tar.gz
* system.h: Include algorithm and utility.
* rtl.h: Do not include utility here. * wide-int.h: Ditto. * tree-vect-data-refs.c (swap): Remove template. (vect_prune_runtime_alias_test_list): Use std::swap instead of swap. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217348 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog8
-rw-r--r--gcc/rtl.h1
-rw-r--r--gcc/system.h2
-rw-r--r--gcc/tree-vect-data-refs.c14
-rw-r--r--gcc/wide-int.h2
5 files changed, 13 insertions, 14 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f86c51baf8c..2f6582dc90e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,11 @@
+2014-11-11 Uros Bizjak <ubizjak@gmail.com>
+
+ * system.h: Include algorithm and utility.
+ * rtl.h: Do not include utility here.
+ * wide-int.h: Ditto.
+ * tree-vect-data-refs.c (swap): Remove template.
+ (vect_prune_runtime_alias_test_list): Use std::swap instead of swap.
+
2014-11-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR bootstrap/63699
diff --git a/gcc/rtl.h b/gcc/rtl.h
index c697d553e95..fa38abb102e 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -20,7 +20,6 @@ along with GCC; see the file COPYING3. If not see
#ifndef GCC_RTL_H
#define GCC_RTL_H
-#include <utility>
#include "statistics.h"
#include "machmode.h"
#include "input.h"
diff --git a/gcc/system.h b/gcc/system.h
index c05f02d6273..58f50f19521 100644
--- a/gcc/system.h
+++ b/gcc/system.h
@@ -215,7 +215,9 @@ extern int errno;
#endif
#ifdef __cplusplus
+# include <algorithm>
# include <cstring>
+# include <utility>
#endif
/* Some of glibc's string inlines cause warnings. Plus we'd rather
diff --git a/gcc/tree-vect-data-refs.c b/gcc/tree-vect-data-refs.c
index 0bc03561cb0..c49b47c7cc4 100644
--- a/gcc/tree-vect-data-refs.c
+++ b/gcc/tree-vect-data-refs.c
@@ -2718,14 +2718,6 @@ comp_dr_with_seg_len_pair (const void *p1_, const void *p2_)
return 0;
}
-template <class T> static void
-swap (T& a, T& b)
-{
- T c (a);
- a = b;
- b = c;
-}
-
/* Function vect_vfa_segment_size.
Create an expression that computes the size of segment
@@ -2858,7 +2850,7 @@ vect_prune_runtime_alias_test_list (loop_vec_info loop_vinfo)
dr_with_seg_len (dr_b, segment_length_b));
if (compare_tree (DR_BASE_ADDRESS (dr_a), DR_BASE_ADDRESS (dr_b)) > 0)
- swap (dr_with_seg_len_pair.first, dr_with_seg_len_pair.second);
+ std::swap (dr_with_seg_len_pair.first, dr_with_seg_len_pair.second);
comp_alias_ddrs.safe_push (dr_with_seg_len_pair);
}
@@ -2908,8 +2900,8 @@ vect_prune_runtime_alias_test_list (loop_vec_info loop_vinfo)
and DR_A1 and DR_A2 are two consecutive memrefs. */
if (*dr_a1 == *dr_a2)
{
- swap (dr_a1, dr_b1);
- swap (dr_a2, dr_b2);
+ std::swap (dr_a1, dr_b1);
+ std::swap (dr_a2, dr_b2);
}
if (!operand_equal_p (DR_BASE_ADDRESS (dr_a1->dr),
diff --git a/gcc/wide-int.h b/gcc/wide-int.h
index 00c7d6ec0e4..f5735d80904 100644
--- a/gcc/wide-int.h
+++ b/gcc/wide-int.h
@@ -216,8 +216,6 @@ along with GCC; see the file COPYING3. If not see
the same result as X + X; the precision of the shift amount Y
can be arbitrarily different from X. */
-
-#include <utility>
#include "system.h"
#include "hwint.h"
#include "signop.h"