Skip to content

Commit 03bce37

Browse files
committedOct 24, 2014
silence innocuous unused-var warning (with Appple LLVM 6.0)
1 parent 9e22ad6 commit 03bce37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/codegen.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2377,7 +2377,7 @@ static Value *emit_call(jl_value_t **args, size_t arglen, jl_codectx_t *ctx, jl_
23772377
if (definitely_not_function) {
23782378
f = jl_module_call_func(ctx->module);
23792379
Value *r = emit_known_call((jl_value_t*)f, args-1, nargs+1, ctx, &theFptr, &f, expr);
2380-
assert(r == NULL);
2380+
assert(r == NULL); (void) r;
23812381
if (theFptr == NULL) {
23822382
just_emit_error("\"call\" is not a function", ctx);
23832383
result = UndefValue::get(jl_pvalue_llvmt);

0 commit comments

Comments
 (0)