Skip to content

Commit

Permalink
Fix LLVM3.6 build
Browse files Browse the repository at this point in the history
(restores what was there before)
  • Loading branch information
ihnorton committed Dec 21, 2014
1 parent 04893a1 commit 86d24fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/debuginfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,9 @@ void jl_getDylibFunctionInfo(const char **name, size_t *line, const char **filen
#endif // ifdef _OS_DARWIN_
if (errorobj) {
#if LLVM36
obj = errorobj.get().release();
auto binary = errorobj.get().takeBinary();
obj = binary.first.release();
binary.second.release();
#elif LLVM35
obj = errorobj.get();
#else
Expand Down

0 comments on commit 86d24fd

Please sign in to comment.