Skip to content

Commit

Permalink
Merge pull request JuliaLang#11905 from JuliaLang/kf/codegenbugs
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Jun 28, 2015
2 parents 042f937 + 9abe7fe commit 070d356
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/intrinsics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ static Value *emit_unbox(Type *to, Value *x, jl_value_t *jt)
return UndefValue::get(to);
}
if (ty != jl_pvalue_llvmt) {
if (to->isAggregateType()) {
if (ty->isPointerTy() && to->isAggregateType()) {
x = builder.CreateLoad(x); // something stack allocated
ty = x->getType();
}
Expand Down
27 changes: 27 additions & 0 deletions test/core.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3033,3 +3033,30 @@ f11858(Any[Foo11858, Bar11858, g11858])
@test g11858(1) == 1.0
@test Foo11858(1).x == 1.0
@test Bar11858(1).x == 1.0

# issue 11904
@noinline throw_error() = error()
foo11904(x::Int) = x
@inline function foo11904{S}(x::Nullable{S})
if isbits(S)
Nullable(foo11904(x.value), x.isnull)
else
throw_error()
end
end

@test !foo11904(Nullable(1)).isnull

# issue 11874
immutable Foo11874
x::Int
end

function bar11874(x)
y::Foo11874
y=x
end

Base.convert(::Type{Foo11874},x::Int) = float(x)

@test_throws TypeError bar11874(1)

0 comments on commit 070d356

Please sign in to comment.