SCM Repository
[diderot] Diff of /branches/pure-cfg/src/compiler/codegen/clang.sml
Diff of /branches/pure-cfg/src/compiler/codegen/clang.sml
Parent Directory
|
Revision Log
|
Patch
162 |
fun mkIfThenElse (e, b1, b2) = S_If(paren e, b1, b2) |
fun mkIfThenElse (e, b1, b2) = S_If(paren e, b1, b2) |
163 |
fun mkIfThen (e, b) = mkIfThenElse (e, b, skip) |
fun mkIfThen (e, b) = mkIfThenElse (e, b, skip) |
164 |
fun mkWhile (e, b) = S_While(paren e, b) |
fun mkWhile (e, b) = S_While(paren e, b) |
165 |
|
val mkCall = S_Call |
166 |
end (* local *) |
end (* local *) |
167 |
|
|
168 |
(* utility functions *) |
(* utility functions *) |
|
Legend:
Removed from v.553 |
|
changed lines |
|
Added in v.554 |
|
|