From 12c18c9fd25eb8443a735f60851e445a5f766ee3 Mon Sep 17 00:00:00 2001 From: Tony Kelman Date: Fri, 1 Apr 2016 20:37:05 -0700 Subject: [PATCH] Fix Windows compilation with LLVM 3.8 --- src/debuginfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debuginfo.cpp b/src/debuginfo.cpp index 9c57c2b7116a0..9ea7798e14ffa 100644 --- a/src/debuginfo.cpp +++ b/src/debuginfo.cpp @@ -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)