diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2017-02-07 23:01:24 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2017-02-10 11:05:54 -0500 |
commit | b99a8b0d07d43b89d5e27883ee5a9a67c2645809 (patch) | |
tree | 9a3f4ebcc0bb971a7e361115b8d9b19529902cb7 /main.c | |
parent | 8799dc30ac472545bc93957c22f070590ff44cb3 (diff) | |
download | roux-b99a8b0d07d43b89d5e27883ee5a9a67c2645809.tar.gz |
support variable argument lists
This change is backward compatible, calls to "variadic" functions (like printf) must now be annotated (with ...).
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c index b60ded6..f93af37 100644 --- a/main.c +++ b/main.c @@ -63,6 +63,7 @@ func(Fn *fn) filluse(fn); fold(fn); abi(fn); + fillpreds(fn); filluse(fn); isel(fn); fillrpo(fn); |