search for: xpp2

Displaying 1 result from an estimated 1 matches for "xpp2".

Did you mean: xpp
2007 Sep 11
2
[LLVMdev] volatiles
...volatile t *xp2 = &x; *xp1 = *xp2; } void self_assign_6 (void) { volatile t *xp = &x; volatile t **xpp = &xp; t sink = **xpp; **xpp = sink; } void self_assign_7 (void) { volatile t *xp1 = &x; volatile t *xp2 = &x; volatile t **xpp1 = &xp1; volatile t **xpp2 = &xp2; **xpp1 = **xpp2; } void self_assign_8 (void) { volatile t *xp = &x; volatile t **xpp = &xp; t sink = *xp; **xpp = sink; } void self_assign_9 (void) { volatile t *xp1 = &x; volatile t *xp2 = &x; volatile t **xpp2 = &xp2; *xp1 = **xpp2; } void self...