]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Don't use predefined sun in g++.dg/lto/pr87906
authorro <ro@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Nov 2018 08:45:58 +0000 (08:45 +0000)
committerro <ro@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Nov 2018 08:45:58 +0000 (08:45 +0000)
* g++.dg/lto/pr87906_0.C: Use moon instead of possibly predefined
sun.
* g++.dg/lto/pr87906_1.C: Likewise.

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

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/lto/pr87906_0.C
gcc/testsuite/g++.dg/lto/pr87906_1.C

index 5edc17e1c37d3c56323d91249890eb74b85a8435..3584dfbfdeda6beacdf426ae2d3400d51f2ec6ec 100644 (file)
@@ -1,3 +1,9 @@
+2018-11-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * g++.dg/lto/pr87906_0.C: Use moon instead of possibly predefined
+       sun.
+       * g++.dg/lto/pr87906_1.C: Likewise.
+
 2018-11-08  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/87913
index 08e7ed3ba07fb2f4b457db2e1f9015b9628de4ca..31b62dad0e0e0cab62ea1186da987cf296acbe86 100644 (file)
@@ -3,13 +3,13 @@
 // { dg-extra-ld-options "-shared -nostdlib" }
 
 namespace com {
-namespace sun {
+namespace moon {
 namespace star {}
-} // namespace sun
+} // namespace moon
 } // namespace com
-namespace a = com::sun::star;
+namespace a = com::moon::star;
 namespace com {
-namespace sun {
+namespace moon {
 namespace star {
 namespace uno {
 class a {
@@ -28,7 +28,7 @@ class c {
 class RuntimeException : b {};
 } // namespace uno
 } // namespace star
-} // namespace sun
+} // namespace moon
 } // namespace com
 template <typename> void d(int) { throw a::uno::RuntimeException(); }
 int f;
index ee5849fd604a26d9c07c2c11a782eef1f7038dc6..561087693dfa9e09cd57c20aca44fd007ab0ac80 100644 (file)
@@ -1,5 +1,5 @@
 namespace com {
-namespace sun {
+namespace moon {
 namespace star {
 namespace uno {
 class a {
@@ -15,9 +15,9 @@ class RuntimeException : b {};
 } // namespace uno
 class C : uno::RuntimeException {};
 } // namespace star
-} // namespace sun
+} // namespace moon
 } // namespace com
-using com::sun::star::C;
-using com::sun::star::uno::RuntimeException;
+using com::moon::star::C;
+using com::moon::star::uno::RuntimeException;
 void d() { throw RuntimeException(); }
 void e() { C(); }