Skip to content

Commit

Permalink
Fix #12947, api error on llvm36+
Browse files Browse the repository at this point in the history
  • Loading branch information
ihnorton committed Sep 5, 2015
1 parent 404b414 commit b3a1be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debuginfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ void lookup_pointer(DIContext *context, char **name, size_t *line,
if (inlineinfo.getNumberOfFrames() > 1) {
topinfo = inlineinfo.getFrame(inlineinfo.getNumberOfFrames() - 1);
jl_copy_str(inlinedat_file, topinfo.FileName.c_str());
*inlinedat_line = topinfo.getLine();
*inlinedat_line = topinfo.Line;
}
#endif

Expand Down

0 comments on commit b3a1be5

Please sign in to comment.