aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/test3.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test3.c')
-rw-r--r--test/test3.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test3.c b/test/test3.c
index e6599bb..35e5e8b 100644
--- a/test/test3.c
+++ b/test/test3.c
@@ -19,5 +19,10 @@ double ff(double x, double y)
return x + y + .5;
}
+void testss() {
+ extern struct { long x,y; } aa();
+ long x = aa().x;
+}
+
long fma(long x, long y) {
return x + (y <<1) - 2147483648;}