]> code.ossystems Code Review - openembedded-core.git/blob
a8846553c67b57d68560d3b7d5ff9627f658ac8e
[openembedded-core.git] /
1 Upstream-Status: Inappropriate [Backport]
2 From 3329b7447ab817bb0374a689f3b381a5781ed8aa Mon Sep 17 00:00:00 2001
3 From: jyasskin <jyasskin@138bc75d-0d04-0410-961f-82ee72b054a4>
4 Date: Thu, 7 Apr 2011 04:50:23 +0000
5 Subject: [PATCH 076/200] Merge r172073 from trunk to the 4.6 release branch, to fix two
6  ambiguities between extensions and new C++0x functions.
7
8 Tested: bootstrap + make check-c++ on x86_64
9
10 libstdc++-v3/ChangeLog:
11
12 2011-04-06  Jeffrey Yasskin  <jyasskin@google.com>
13
14         * include/ext/algorithm (is_sorted): In C++0x mode import from
15         namespace std.
16         * include/ext/numeric (iota): In C++0x mode import from
17         namespace std.
18         * testsuite/ext/is_sorted/cxx0x.cc: New.
19         * testsuite/ext/iota/cxx0x.cc: New.
20
21
22
23 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_6-branch@172074 138bc75d-0d04-0410-961f-82ee72b054a4
24
25 index 368b591..417a03a 100644
26 --- a/libstdc++-v3/include/ext/algorithm
27 +++ b/libstdc++-v3/include/ext/algorithm
28 @@ -471,6 +471,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
29      }
30  #endif
31  
32 +#ifdef __GXX_EXPERIMENTAL_CXX0X__
33 +  using std::is_sorted;
34 +#else
35    // is_sorted, a predicated testing whether a range is sorted in
36    // nondescending order.  This is an extension, not part of the C++
37    // standard.
38 @@ -526,6 +529,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
39           return false;
40        return true;
41      }
42 +#endif  // __GXX_EXPERIMENTAL_CXX0X__
43  
44    /**
45     *  @brief Find the median of three values.
46 diff --git a/libstdc++-v3/include/ext/numeric b/libstdc++-v3/include/ext/numeric
47 index d4a367f..b389177 100644
48 --- a/libstdc++-v3/include/ext/numeric
49 +++ b/libstdc++-v3/include/ext/numeric
50 @@ -123,6 +123,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
51      power(_Tp __x, _Integer __n)
52      { return __power(__x, __n); }
53  
54 +#ifdef __GXX_EXPERIMENTAL_CXX0X__
55 +  using std::iota;
56 +#else
57    /**
58     *  This is an SGI extension.
59     *  @ingroup SGIextensions
60 @@ -141,9 +144,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
61        while (__first != __last)
62         *__first++ = __value++;
63      }
64 +#endif  // __GXX_EXPERIMENTAL_CXX0X__
65  
66  _GLIBCXX_END_NAMESPACE_VERSION
67  } // namespace
68  
69  #endif
70 -
71 diff --git a/libstdc++-v3/testsuite/ext/iota/cxx0x.cc b/libstdc++-v3/testsuite/ext/iota/cxx0x.cc
72 new file mode 100644
73 index 0000000..84917ad
74 --- /dev/null
75 +++ b/libstdc++-v3/testsuite/ext/iota/cxx0x.cc
76 @@ -0,0 +1,28 @@
77 +// { dg-do compile }
78 +// { dg-options "-std=gnu++0x" }
79 +
80 +// Copyright (C) 2011 Free Software Foundation, Inc.
81 +//
82 +// This file is part of the GNU ISO C++ Library.  This library is free
83 +// software; you can redistribute it and/or modify it under the
84 +// terms of the GNU General Public License as published by the
85 +// Free Software Foundation; either version 3, or (at your option)
86 +// any later version.
87 +
88 +// This library is distributed in the hope that it will be useful,
89 +// but WITHOUT ANY WARRANTY; without even the implied warranty of
90 +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
91 +// GNU General Public License for more details.
92 +
93 +// You should have received a copy of the GNU General Public License along
94 +// with this library; see the file COPYING3.  If not see
95 +// <http://www.gnu.org/licenses/>.
96 +
97 +#include <ext/numeric>
98 +#include <vector>
99 +
100 +void foo()
101 +{
102 +  std::vector<int> v;
103 +  iota(v.begin(), v.end(), 0);
104 +}
105 diff --git a/libstdc++-v3/testsuite/ext/is_sorted/cxx0x.cc b/libstdc++-v3/testsuite/ext/is_sorted/cxx0x.cc
106 new file mode 100644
107 index 0000000..518716c
108 --- /dev/null
109 +++ b/libstdc++-v3/testsuite/ext/is_sorted/cxx0x.cc
110 @@ -0,0 +1,28 @@
111 +// { dg-do compile }
112 +// { dg-options "-std=gnu++0x" }
113 +
114 +// Copyright (C) 2011 Free Software Foundation, Inc.
115 +//
116 +// This file is part of the GNU ISO C++ Library.  This library is free
117 +// software; you can redistribute it and/or modify it under the
118 +// terms of the GNU General Public License as published by the
119 +// Free Software Foundation; either version 3, or (at your option)
120 +// any later version.
121 +
122 +// This library is distributed in the hope that it will be useful,
123 +// but WITHOUT ANY WARRANTY; without even the implied warranty of
124 +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
125 +// GNU General Public License for more details.
126 +
127 +// You should have received a copy of the GNU General Public License along
128 +// with this library; see the file COPYING3.  If not see
129 +// <http://www.gnu.org/licenses/>.
130 +
131 +#include <ext/algorithm>
132 +#include <vector>
133 +
134 +void foo()
135 +{
136 +  std::vector<int> v;
137 +  is_sorted(v.begin(), v.end());
138 +}
139 -- 
140 1.7.0.4
141