On Sun, 22 Jan 2006, Richard Sandiford wrote:

> I'm going to regret this, but... I don't follow.  How is Kai's testcase
> different from:
> 
> int ii;
> double dd;
> void foo (int *ip, double *dp)
> {
>   *ip = 15;
>   ii = *ip;
>   *dp = 1.5;
>   dd = *dp;
> }
> 
> void test (void)
> {
>   union { int i; double d; } u;
>   foo (&u.i, &u.d);
> }

You have read DR#236 and the subsequent discussions in the past five 
years' WG14 papers (e.g. N1111), right?

-- 
Joseph S. Myers               http://www.srcf.ucam.org/~jsm28/gcc/
    [EMAIL PROTECTED] (personal mail)
    [EMAIL PROTECTED] (CodeSourcery mail)
    [EMAIL PROTECTED] (Bugzilla assignments and CCs)

Reply via email to