Commit 965a9c31 by Jeffrey Oldham Committed by Jeffrey D. Oldham

20001009-2.c (foo): Test only works for signed char, not default char.

2000-12-30  Jeffrey Oldham  <oldham@codesourcery.com>

	* gcc.c-torture/execute/20001009-2.c (foo): Test only works for
	signed char, not default char.

From-SVN: r38564
parent 9b961b95
2000-12-30 Jeffrey Oldham <oldham@codesourcery.com>
* gcc.c-torture/execute/20001009-2.c (foo): Test only works for
signed char, not default char.
2000-12-30 Jeffrey Oldham <oldham@codesourcery.com>
* g++.old-deja/g++.other/crash18.C: Fails on mips*-sgi-irix*.
2000-12-30 David Billinghurst <David.Billinghurst@riotinto.com>
......
......@@ -8,7 +8,7 @@ int foo()
{
c=1;
asm(""::"r"(c));
c=(char)a;
c=(signed char)a;
}
if (c!=-1)
abort();
......
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