Commit 11f39bb8 by Richard Henderson Committed by Richard Henderson

New test.

From-SVN: r24118
parent 9186280e
Sun Dec 6 00:40:12 1998 Richard Henderson <rth@cygnus.com>
* gcc.c-torture/execute/981206.c: New test.
1998-12-06 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.ns/template7.C: New test.
......
/* Verify unaligned address aliasing on Alpha EV[45]. */
static unsigned short x, y;
void foo()
{
x = 0x345;
y = 0x567;
}
int main()
{
foo ();
if (x != 0x345 || y != 0x567)
abort ();
exit (0);
}
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