From c22ad0752f9bbe5dc8c9deae99a10b3fc5c8e1e3 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Wed, 16 Nov 2011 14:28:15 -0800 Subject: [PATCH] wrap long line --- src/comp/lib/llvm.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/comp/lib/llvm.rs b/src/comp/lib/llvm.rs index 7010bc82f010..c9da469bc501 100644 --- a/src/comp/lib/llvm.rs +++ b/src/comp/lib/llvm.rs @@ -865,8 +865,8 @@ native mod llvm { fn LLVMRustParseBitcode(MemBuf: MemoryBufferRef) -> ModuleRef; /** FiXME: Hacky adaptor for lack of ULongLong in FFI: */ - fn LLVMRustConstInt(IntTy: TypeRef, N_hi: uint, N_lo: uint, SignExtend: Bool) -> - ValueRef; + fn LLVMRustConstInt(IntTy: TypeRef, N_hi: uint, N_lo: uint, + SignExtend: Bool) -> ValueRef; fn LLVMRustAddPrintModulePass(PM: PassManagerRef, M: ModuleRef, Output: sbuf);