Skip to content

Commit

Permalink
Remove extra whitespace so Travis will pass
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Nov 30, 2014
1 parent 937ca4d commit 746f981
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/debuginfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ void jl_getFunctionInfo(const char **name, size_t *line, const char **filename,
#endif // USE_MCJIT
}

int jl_get_llvmf_info(size_t fptr, uint64_t *symsize,
int jl_get_llvmf_info(size_t fptr, uint64_t *symsize,
#ifdef USE_MCJIT
object::ObjectFile **object)
#else
Expand All @@ -645,7 +645,7 @@ int jl_get_llvmf_info(size_t fptr, uint64_t *symsize,
std::map<size_t, FuncInfo, revcomp>::iterator fit = fmap.find(fptr);

if (fit == fmap.end()) {
return 0;
return 0;
}
*symsize = fit->second.lengthAdr;
*lines = fit->second.lines;
Expand Down
2 changes: 1 addition & 1 deletion src/disasm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
#include <llvm/LLVMContext.h>
#endif
#include <llvm/DebugInfo/DIContext.h>
#ifdef LLVM35
#ifdef LLVM35
#include <llvm/IR/DebugInfo.h>
#elif defined(LLVM32)
#include <llvm/DebugInfo.h>
Expand Down

0 comments on commit 746f981

Please sign in to comment.