about summary refs log tree commit diff
path: root/src/comp/lib
diff options
context:
space:
mode:
authorMarijn Haverbeke <marijnh@gmail.com>2011-07-27 14:48:34 +0200
committerMarijn Haverbeke <marijnh@gmail.com>2011-07-27 15:54:33 +0200
commit6e2a7bff7faf040b1eced0ee3547b28f6962cedc (patch)
treebd05a425b4ad236d7e861ffdf0931bf71ad3bba9 /src/comp/lib
parentdf7f21db093b0f206048b18e977161f91b7c28f1 (diff)
downloadrust-6e2a7bff7faf040b1eced0ee3547b28f6962cedc.tar.gz
rust-6e2a7bff7faf040b1eced0ee3547b28f6962cedc.zip
Fix damage done by the pretty-printer
Diffstat (limited to 'src/comp/lib')
-rw-r--r--src/comp/lib/llvm.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/comp/lib/llvm.rs b/src/comp/lib/llvm.rs
index 019179d45ec..76e234cae9a 100644
--- a/src/comp/lib/llvm.rs
+++ b/src/comp/lib/llvm.rs
@@ -1395,11 +1395,10 @@ obj builder(B: BuilderRef, terminated: @mutable bool) {
 
     fn is_terminated() -> bool {
         ret *terminated;
-    }drop 
-
-          {
+    }
+    drop {
          llvm::LLVMDisposeBuilder(B);
-     }
+    }
 }
 
 /* Memory-managed object interface to type handles. */