summaryrefslogtreecommitdiff
path: root/src/compiler.sig
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-11-20 12:16:30 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-11-20 12:16:30 -0500
commitbb90d8a1a4c89477565d4da98716b6d0c855a324 (patch)
tree2a5822346670938e7d1be8b131e9a0b7d3959408 /src/compiler.sig
parenteb171fceba46cbe600d8e29adc526e86719cdc4f (diff)
Profiling support
Diffstat (limited to 'src/compiler.sig')
-rw-r--r--src/compiler.sig5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/compiler.sig b/src/compiler.sig
index 2bed20f9..af086675 100644
--- a/src/compiler.sig
+++ b/src/compiler.sig
@@ -35,10 +35,11 @@ signature COMPILER = sig
sources : string list,
exe : string,
sql : string option,
- debug : bool
+ debug : bool,
+ profile : bool
}
val compile : string -> unit
- val compileC : {cname : string, oname : string, ename : string, libs : string} -> unit
+ val compileC : {cname : string, oname : string, ename : string, libs : string, profile : bool} -> unit
type ('src, 'dst) phase
type ('src, 'dst) transform