Skip to content

Commit

Permalink
Fix Windows compilation with LLVM 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Apr 2, 2016
1 parent 9f407eb commit 12c18c9
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 @@ -337,7 +337,7 @@ class JuliaJITEventListener: public JITEventListener
Addr = sym_iter.getAddress().get();
Section = sym_iter.getSection().get();
assert(Section != EndSection && Section->isText());
SectionAddr = Section->getAddress().get();
SectionAddr = Section->getAddress();
Section->getName(sName);
SectionLoadAddr = getLoadAddress(sName);
#elif defined(LLVM37)
Expand Down

0 comments on commit 12c18c9

Please sign in to comment.