diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-11-27 11:32:38 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-11-27 11:32:38 -0500 |
commit | d6fb05a233e2ef22cd569418fe3714fc908a7b08 (patch) | |
tree | b18bb12b0084fb1a51664458aab8d435eec4932c /lisc/ssa.c | |
parent | 3302e31534f2d2bbb4a5be7dcf9c49eede2cfd7a (diff) | |
download | roux-d6fb05a233e2ef22cd569418fe3714fc908a7b08.tar.gz |
disable optimizations
Diffstat (limited to 'lisc/ssa.c')
-rw-r--r-- | lisc/ssa.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisc/ssa.c b/lisc/ssa.c index 9d6ef4a..8783d73 100644 --- a/lisc/ssa.c +++ b/lisc/ssa.c @@ -166,6 +166,8 @@ fillrpo(Fn *f) } } +#if 0 + /* for dominators computation, read * "A Simple, Fast Dominance Algorithm" * by K. Cooper, T. Harvey, and K. Kennedy. @@ -507,3 +509,5 @@ ssa(Fn *fn) printfn(fn, stderr); } } + +#endif |