Skip to content

Commit 12c18c9

Browse files
committed
Fix Windows compilation with LLVM 3.8
1 parent 9f407eb commit 12c18c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/debuginfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ class JuliaJITEventListener: public JITEventListener
337337
Addr = sym_iter.getAddress().get();
338338
Section = sym_iter.getSection().get();
339339
assert(Section != EndSection && Section->isText());
340-
SectionAddr = Section->getAddress().get();
340+
SectionAddr = Section->getAddress();
341341
Section->getName(sName);
342342
SectionLoadAddr = getLoadAddress(sName);
343343
#elif defined(LLVM37)

0 commit comments

Comments
 (0)