File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
src/librustc_codegen_llvm/llvm Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -388,8 +388,6 @@ extern { pub type PassManager; }
388
388
pub type PassManagerRef = * mut PassManager ;
389
389
extern { pub type PassManagerBuilder ; }
390
390
pub type PassManagerBuilderRef = * mut PassManagerBuilder ;
391
- extern { pub type Use ; }
392
- pub type UseRef = * mut Use ;
393
391
extern { pub type ObjectFile ; }
394
392
pub type ObjectFileRef = * mut ObjectFile ;
395
393
extern { pub type SectionIterator ; }
@@ -556,11 +554,6 @@ extern "C" {
556
554
pub fn LLVMReplaceAllUsesWith ( OldVal : & ' a Value , NewVal : & ' a Value ) ;
557
555
pub fn LLVMSetMetadata ( Val : & ' a Value , KindID : c_uint , Node : & ' a Value ) ;
558
556
559
- // Operations on Uses
560
- pub fn LLVMGetFirstUse ( Val : & Value ) -> UseRef ;
561
- pub fn LLVMGetNextUse ( U : UseRef ) -> UseRef ;
562
- pub fn LLVMGetUser ( U : UseRef ) -> & ' a Value ;
563
-
564
557
// Operations on Users
565
558
pub fn LLVMGetOperand ( Val : & Value , Index : c_uint ) -> & Value ;
566
559
You can’t perform that action at this time.
0 commit comments