You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/builder.rs
+16-7Lines changed: 16 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ use llvm_sys::{LLVMTypeKind, LLVMAtomicOrdering};
5
5
6
6
use{IntPredicate,FloatPredicate};
7
7
use basic_block::BasicBlock;
8
-
use values::{AggregateValue,AsValueRef,BasicValue,BasicValueEnum,PhiValue,FunctionValue,IntValue,PointerValue,VectorValue,InstructionValue,GlobalValue,IntMathValue,FloatMathValue,PointerMathValue,InstructionOpcode,CallSiteValue};
8
+
use values::{AggregateValue,AggregateValueEnum,AsValueRef,BasicValue,BasicValueEnum,PhiValue,FunctionValue,IntValue,PointerValue,VectorValue,InstructionValue,GlobalValue,IntMathValue,FloatMathValue,PointerMathValue,InstructionOpcode,CallSiteValue};
9
9
use types::{AsTypeRef,BasicType,IntMathType,FloatMathType,PointerType,PointerMathType};
10
10
11
11
use std::ffi::CString;
@@ -947,7 +947,6 @@ impl Builder {
947
947
948
948
// REVIEW: How does LLVM treat out of bound index? Maybe we should return an Option?
0 commit comments