~ubuntu-branches/ubuntu/wily/julia/wily

« back to all changes in this revision

Viewing changes to src/codegen.cpp

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-02-11 03:51:26 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130211035126-hap464pbhd97wjbl
Tags: 0.1~20130211.git86fbe98d-1
* New upstream snapshot.
* debian/control:
   + add git to Recommends (for Julia package manager)
   + remove dependencies on libglpk-dev (it moved to its own package)
   + add explicit dependency on libgmp10 (there is no more a wrapper)
* fix-clean-rules.patch: remove patch, applied upstream
* gsvddense_blasint.patch: new patch
* Refresh other patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
1655
1655
        make_gcroot(boxed(a3), ctx);
1656
1656
        Value *mdargs[6] = { name, bp, literal_pointer_val((void*)bnd),
1657
1657
                             a1, a2, a3 };
1658
 
        builder.CreateCall(jlmethod_func, ArrayRef<Value*>(&mdargs[0], 6));
1659
1658
        ctx->argDepth = last_depth;
1660
 
        return literal_pointer_val((jl_value_t*)jl_nothing);
 
1659
        return builder.CreateCall(jlmethod_func, ArrayRef<Value*>(&mdargs[0], 6));
1661
1660
    }
1662
1661
    else if (head == const_sym) {
1663
1662
        jl_sym_t *sym = (jl_sym_t*)args[0];