aboutsummaryrefslogtreecommitdiff
path: root/src/boot/driver
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-06-28 09:39:43 -0700
committerGraydon Hoare <[email protected]>2010-06-28 09:39:43 -0700
commitd608c091680989e331b849fac8936a6e493bed43 (patch)
tree194928a43764fecce4f753533775994b13b98534 /src/boot/driver
parentOnce more with feeling. Closes #13. (diff)
downloadrust-d608c091680989e331b849fac8936a6e493bed43.tar.xz
rust-d608c091680989e331b849fac8936a6e493bed43.zip
Some fixme-to-issue housekeeping.
Diffstat (limited to 'src/boot/driver')
-rw-r--r--src/boot/driver/lib.ml4
-rw-r--r--src/boot/driver/main.ml6
2 files changed, 6 insertions, 4 deletions
diff --git a/src/boot/driver/lib.ml b/src/boot/driver/lib.ml
index e0391c65..764fd688 100644
--- a/src/boot/driver/lib.ml
+++ b/src/boot/driver/lib.ml
@@ -12,7 +12,7 @@ let iflog (sess:Session.sess) (thunk:(unit -> unit)) : unit =
else ()
;;
-(* FIXME: move these to sess. *)
+(* FIXME (issue #67): move these to sess. *)
let ar_cache = Hashtbl.create 0 ;;
let sects_cache = Hashtbl.create 0;;
let meta_cache = Hashtbl.create 0;;
@@ -138,7 +138,7 @@ let get_mod
then true
else
match meta.(i) with
- (* FIXME: bind the wildcards. *)
+ (* FIXME (issue #68): bind the wildcards. *)
(_, None) -> meta_matches (i+1) f_meta
| (k, Some v) ->
match atab_search f_meta k with
diff --git a/src/boot/driver/main.ml b/src/boot/driver/main.ml
index 18416590..61d419e7 100644
--- a/src/boot/driver/main.ml
+++ b/src/boot/driver/main.ml
@@ -9,7 +9,7 @@ let _ =
let (targ:Common.target) =
match Sys.os_type with
"Unix" ->
- (* FIXME: this is an absurd heuristic. *)
+ (* FIXME (issue #69): this is an absurd heuristic. *)
if Sys.file_exists "/System/Library"
then MacOS_x86_macho
else Linux_x86_elf
@@ -26,7 +26,9 @@ let (sess:Session.sess) =
Session.sess_out = None;
Session.sess_library_mode = false;
Session.sess_alt_backend = false;
- (* FIXME: need something fancier here for unix sub-flavours. *)
+ (* FIXME (issue #69): need something fancier here for unix
+ * sub-flavours.
+ *)
Session.sess_targ = targ;
Session.sess_log_lex = false;
Session.sess_log_parse = false;