Skip to content

Commit

Permalink
Fix syntax error introduced by "Fix syntax error introduced by f027462"
Browse files Browse the repository at this point in the history
LLVM 3.5 part of 937ca4d was wrong
  • Loading branch information
tkelman committed Nov 30, 2014
1 parent 3eeae1e commit af4688b
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 @@ -432,7 +432,7 @@ void jl_getDylibFunctionInfo(const char **name, size_t *line, const char **filen
membuf->getMemBufferRef(), sys::fs::file_magic::unknown);
#elif defined(LLVM35)
MemoryBuffer *membuf = MemoryBuffer::getMemBuffer(
StringRef((const char *)fbase, msize)), "", false);
StringRef((const char *)fbase, msize), "", false);
std::unique_ptr<MemoryBuffer> buf(membuf);
auto origerrorobj = llvm::object::ObjectFile::createObjectFile(
buf, sys::fs::file_magic::unknown);
Expand Down

0 comments on commit af4688b

Please sign in to comment.