Remove or _-prefix all unused function arguments

This should make the compilation process a bit less noisy.
This commit is contained in:
Marijn Haverbeke
2011-08-18 10:01:39 +02:00
parent 2885c67d47
commit cd440d338e
35 changed files with 187 additions and 192 deletions

View File

@@ -1264,7 +1264,7 @@ obj builder(B: BuilderRef, terminated: @mutable bool,
ret llvm::LLVMBuildTruncOrBitCast(B, Val, DestTy, str::buf(""));
}
fn Cast(Op: Opcode, Val: ValueRef, DestTy: TypeRef, Name: sbuf) ->
fn Cast(Op: Opcode, Val: ValueRef, DestTy: TypeRef, _Name: sbuf) ->
ValueRef {
assert (!*terminated);
ret llvm::LLVMBuildCast(B, Op, Val, DestTy, str::buf(""));