summary refs log tree commit diff
path: root/src/comp
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2011-11-13 06:43:26 -0800
committerNiko Matsakis <niko@alum.mit.edu>2011-11-16 15:16:42 -0800
commit5cabfb3a395995083468b29d8cc061cd1d9ef6bf (patch)
tree93c8022b4923db35556e61887ec64d7bb2487d5d /src/comp
parent26b0662fb8ccea71f74e98a3c28d8dda6cbb2b20 (diff)
downloadrust-5cabfb3a395995083468b29d8cc061cd1d9ef6bf.tar.gz
rust-5cabfb3a395995083468b29d8cc061cd1d9ef6bf.zip
remove fixed FIXME
Diffstat (limited to 'src/comp')
-rw-r--r--src/comp/middle/trans.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/comp/middle/trans.rs b/src/comp/middle/trans.rs
index dffe0af368e..78652b9cb5e 100644
--- a/src/comp/middle/trans.rs
+++ b/src/comp/middle/trans.rs
@@ -1965,7 +1965,6 @@ fn free_ty(cx: @block_ctxt, v: ValueRef, t: ty::t) -> @block_ctxt {
 
 fn call_memmove(cx: @block_ctxt, dst: ValueRef, src: ValueRef,
                 n_bytes: ValueRef) -> result {
-    // FIXME: switch to the 64-bit variant when on such a platform.
     // TODO: Provide LLVM with better alignment information when the alignment
     // is statically known (it must be nothing more than a constant int, or
     // LLVM complains -- not even a constant element of a tydesc works).