Commit e9e037ef by Geoff Keating Committed by Geoffrey Keating

memtemp77.C (main): Update demangled function name for current C++ compiler.

	* g++.old-deja/g++.pt/memtemp77.C (main): Update demangled
	function name for current C++ compiler.
	Patch from Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>.

From-SVN: r36701
parent fdd5ba4a
2000-10-03 Geoff Keating <geoffk@cygnus.com>
* g++.old-deja/g++.pt/memtemp77.C (main): Update demangled
function name for current C++ compiler.
Patch from Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>.
2000-09-29 Gabriel Dos Reis <gdr@codesourcery.com>
* g++.old-deja/g++.ext/pretty3.C: Fix comparison with
......
......@@ -18,7 +18,7 @@ const char* S3<char>::h(int) { return __PRETTY_FUNCTION__; }
int main()
{
if (strcmp (S3<double>::h(7),
"const char *S3<T>::h (U) [with U = int, T = double]") == 0)
"const char *S3<T>::h(U) [with U = int, T = double]") == 0)
return 0;
else
return 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment