We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105711b commit 98e2bdfCopy full SHA for 98e2bdf
src/llvm-julia-licm.cpp
@@ -62,7 +62,7 @@ static void moveInstructionBefore(Instruction &I, Instruction &Dest,
62
#if JL_LLVM_VERSION >= 200000
63
I.moveBefore(Dest.getIterator());
64
#else
65
- I.moveBefore(Dest);
+ I.moveBefore(&Dest);
66
#endif
67
if (MSSAU.getMemorySSA())
68
if (MemoryUseOrDef *OldMemAcc = cast_or_null<MemoryUseOrDef>(
0 commit comments