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
+8-11Lines changed: 8 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ use llvm_sys::{LLVMTypeKind, LLVMAtomicOrdering};
6
6
use{IntPredicate,FloatPredicate};
7
7
use basic_block::BasicBlock;
8
8
use values::{AggregateValue,AsValueRef,BasicValue,BasicValueEnum,PhiValue,FunctionValue,IntValue,PointerValue,VectorValue,InstructionValue,GlobalValue,IntMathValue,FloatMathValue,PointerMathValue,InstructionOpcode};
9
-
use types::{AsTypeRef,BasicType,PointerType,IntMathType,FloatMathType,PointerMathType};
9
+
use types::{AsTypeRef,BasicType,IntMathType,FloatMathType,PointerMathType};
Copy file name to clipboardExpand all lines: src/module.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
use llvm_sys::analysis::{LLVMVerifyModule,LLVMVerifierFailureAction};
2
-
use llvm_sys::bit_reader::{LLVMParseBitcode,LLVMParseBitcodeInContext,LLVMGetBitcodeModuleInContext,LLVMGetBitcodeModule};
2
+
use llvm_sys::bit_reader::{LLVMParseBitcode,LLVMParseBitcodeInContext};
3
3
use llvm_sys::bit_writer::{LLVMWriteBitcodeToFile,LLVMWriteBitcodeToMemoryBuffer};
4
4
use llvm_sys::core::{LLVMAddFunction,LLVMAddGlobal,LLVMDumpModule,LLVMGetNamedFunction,LLVMGetTypeByName,LLVMSetDataLayout,LLVMSetTarget,LLVMCloneModule,LLVMDisposeModule,LLVMGetTarget,LLVMModuleCreateWithName,LLVMGetModuleContext,LLVMGetFirstFunction,LLVMGetLastFunction,LLVMSetLinkage,LLVMAddGlobalInAddressSpace,LLVMPrintModuleToString,LLVMGetNamedMetadataNumOperands,LLVMAddNamedMetadataOperand,LLVMGetNamedMetadataOperands,LLVMGetFirstGlobal,LLVMGetLastGlobal,LLVMGetNamedGlobal,LLVMPrintModuleToFile,LLVMSetModuleInlineAsm};
5
5
use llvm_sys::execution_engine::{LLVMCreateInterpreterForModule,LLVMCreateJITCompilerForModule,LLVMCreateExecutionEngineForModule};
0 commit comments