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/basic_block.rs
+36-1Lines changed: 36 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
//! A `BasicBlock` is a container of instructions.
2
2
3
-
use llvm_sys::core::{LLVMGetBasicBlockParent,LLVMGetBasicBlockTerminator,LLVMGetNextBasicBlock,LLVMIsABasicBlock,LLVMIsConstant,LLVMMoveBasicBlockAfter,LLVMMoveBasicBlockBefore,LLVMPrintTypeToString,LLVMPrintValueToString,LLVMTypeOf,LLVMDeleteBasicBlock,LLVMGetPreviousBasicBlock,LLVMRemoveBasicBlockFromParent,LLVMGetFirstInstruction,LLVMGetLastInstruction,LLVMGetTypeContext,LLVMBasicBlockAsValue};
3
+
use llvm_sys::core::{LLVMGetBasicBlockParent,LLVMGetBasicBlockTerminator,LLVMGetNextBasicBlock,LLVMIsABasicBlock,LLVMIsConstant,LLVMMoveBasicBlockAfter,LLVMMoveBasicBlockBefore,LLVMPrintTypeToString,LLVMPrintValueToString,LLVMTypeOf,LLVMDeleteBasicBlock,LLVMGetPreviousBasicBlock,LLVMRemoveBasicBlockFromParent,LLVMGetFirstInstruction,LLVMGetLastInstruction,LLVMGetTypeContext,LLVMBasicBlockAsValue,LLVMReplaceAllUsesWith};
4
4
#[llvm_versions(3.9..=latest)]
5
5
use llvm_sys::core::LLVMGetBasicBlockName;
6
6
use llvm_sys::prelude::{LLVMValueRef,LLVMBasicBlockRef};
0 commit comments