diff options
Diffstat (limited to 'src/comp/lib')
| -rw-r--r-- | src/comp/lib/llvm.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/comp/lib/llvm.rs b/src/comp/lib/llvm.rs index 20b0cd99..704c6092 100644 --- a/src/comp/lib/llvm.rs +++ b/src/comp/lib/llvm.rs @@ -1007,7 +1007,8 @@ obj builder(BuilderRef B) { fn InsertElement(ValueRef VecVal, ValueRef EltVal, ValueRef Index) -> ValueRef { - ret llvm.LLVMBuildInsertElement(B, VecVal, EltVal, Index, _str.buf("")); + ret llvm.LLVMBuildInsertElement(B, VecVal, EltVal, Index, + _str.buf("")); } fn ShuffleVector(ValueRef V1, ValueRef V2, ValueRef Mask) -> ValueRef { |