diff options
author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-14 22:23:51 +0000 |
---|---|---|
committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-14 22:23:51 +0000 |
commit | bd45d2ec068db8fdce9afe54db2eec21a75ae2b2 (patch) | |
tree | f5d02bce10e92cb76b237f5da6f7f52129d8c5dd /libstdc++-v3 | |
parent | 77adc39ef3ec65e20e427a19678d515d92a91d5f (diff) | |
download | gcc-bd45d2ec068db8fdce9afe54db2eec21a75ae2b2.tar.gz |
* testsuite/26_numerics/complex/abi_tag.cc: Adjust expected
demangling for 128bit long-double targets.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193509 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/26_numerics/complex/abi_tag.cc | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d93b7e61a2c..ebda0315c68 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2012-11-14 Uros Bizjak <ubizjak@gmail.com> + + * testsuite/26_numerics/complex/abi_tag.cc: Adjust expected + demangling for 128bit long-double targets. + 2012-11-12 Jonathan Wakely <jwakely.gcc@gmail.com> * include/std/future (atomic_future): Remove declaration of diff --git a/libstdc++-v3/testsuite/26_numerics/complex/abi_tag.cc b/libstdc++-v3/testsuite/26_numerics/complex/abi_tag.cc index a8454667228..53ef0e46e87 100644 --- a/libstdc++-v3/testsuite/26_numerics/complex/abi_tag.cc +++ b/libstdc++-v3/testsuite/26_numerics/complex/abi_tag.cc @@ -8,7 +8,7 @@ float (std::complex<float>::*p1)() const = &std::complex<float>::real; // { dg-final { scan-assembler "_ZNKSt7complexIdE4realB5cxx11Ev" } } double (std::complex<double>::*p2)() const = &std::complex<double>::real; -// { dg-final { scan-assembler "_ZNKSt7complexIeE4realB5cxx11Ev" } } +// { dg-final { scan-assembler "_ZNKSt7complexI\[eg\]E4realB5cxx11Ev" } } long double (std::complex<long double>::*p3)() const = &std::complex<long double>::real; // { dg-final { scan-assembler "_ZNKSt7complexIiE4realB5cxx11Ev" } } @@ -18,7 +18,7 @@ int (std::complex<int>::*p4)() const = &std::complex<int>::real; float (std::complex<float>::*p5)() const = &std::complex<float>::imag; // { dg-final { scan-assembler "_ZNKSt7complexIdE4imagB5cxx11Ev" } } double (std::complex<double>::*p6)() const = &std::complex<double>::imag; -// { dg-final { scan-assembler "_ZNKSt7complexIeE4imagB5cxx11Ev" } } +// { dg-final { scan-assembler "_ZNKSt7complexI\[eg\]E4imagB5cxx11Ev" } } long double (std::complex<long double>::*p7)() const = &std::complex<long double>::imag; // { dg-final { scan-assembler "_ZNKSt7complexIiE4imagB5cxx11Ev" } } |