Skip to content

Commit

Permalink
[Kaleidoscope][BuildingAJIT] Add a missing std::move.
Browse files Browse the repository at this point in the history
This should fix the build failure described in
#63.
  • Loading branch information
lhames committed Dec 15, 2019
1 parent 8280896 commit 064e7d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class KaleidoscopeJIT {
FPM->run(F);
});

return TSM;
return std::move(TSM);
}
};

Expand Down

0 comments on commit 064e7d1

Please sign in to comment.