3 /* This test used to fail on x86_64 on linux with sse registers */
11 struct Point top_left
;
15 float foo(struct Point p
, struct Rect r
) {
20 int main(int argc
, char **argv
) {
21 struct Point p
= {1, 2};
22 struct Rect r
= {{3, 4}, {5, 6}};
25 printf("%f\n", foo(p
, r
));