@@ -559,8 +559,8 @@ extern "C" {
559
559
pub fn LLVMConstIntOfArbitraryPrecision ( IntTy : & Type , Wn : c_uint , Ws : * const u64 ) -> & Value ;
560
560
pub fn LLVMConstIntGetZExtValue ( ConstantVal : & Value ) -> c_ulonglong ;
561
561
pub fn LLVMRustConstInt128Get ( ConstantVal : & Value , SExt : bool ,
562
- high : * mut u64 , low : * mut u64 ) -> bool ;
563
- pub fn LLVMConstRealGetDouble ( ConstantVal : & Value , losesInfo : * mut Bool ) -> f64 ;
562
+ high : & mut u64 , low : & mut u64 ) -> bool ;
563
+ pub fn LLVMConstRealGetDouble ( ConstantVal : & Value , losesInfo : & mut Bool ) -> f64 ;
564
564
565
565
566
566
// Operations on composite constants
@@ -1470,13 +1470,13 @@ extern "C" {
1470
1470
pub fn LLVMRustOpenArchive ( path : * const c_char ) -> Option < & ' static mut Archive > ;
1471
1471
pub fn LLVMRustArchiveIteratorNew ( AR : & Archive ) -> ArchiveIteratorRef ;
1472
1472
pub fn LLVMRustArchiveIteratorNext ( AIR : ArchiveIteratorRef ) -> ArchiveChildRef ;
1473
- pub fn LLVMRustArchiveChildName ( ACR : ArchiveChildRef , size : * mut size_t ) -> * const c_char ;
1474
- pub fn LLVMRustArchiveChildData ( ACR : ArchiveChildRef , size : * mut size_t ) -> * const c_char ;
1473
+ pub fn LLVMRustArchiveChildName ( ACR : ArchiveChildRef , size : & mut size_t ) -> * const c_char ;
1474
+ pub fn LLVMRustArchiveChildData ( ACR : ArchiveChildRef , size : & mut size_t ) -> * const c_char ;
1475
1475
pub fn LLVMRustArchiveChildFree ( ACR : ArchiveChildRef ) ;
1476
1476
pub fn LLVMRustArchiveIteratorFree ( AIR : ArchiveIteratorRef ) ;
1477
1477
pub fn LLVMRustDestroyArchive ( AR : & ' static mut Archive ) ;
1478
1478
1479
- pub fn LLVMRustGetSectionName ( SI : SectionIteratorRef , data : * mut * const c_char ) -> size_t ;
1479
+ pub fn LLVMRustGetSectionName ( SI : SectionIteratorRef , data : & mut * const c_char ) -> size_t ;
1480
1480
1481
1481
pub fn LLVMRustWriteTwineToString ( T : & Twine , s : & RustString ) ;
1482
1482
@@ -1492,9 +1492,9 @@ extern "C" {
1492
1492
loc_filename_out : & RustString ,
1493
1493
message_out : & RustString ) ;
1494
1494
pub fn LLVMRustUnpackInlineAsmDiagnostic ( DI : & ' a DiagnosticInfo ,
1495
- cookie_out : * mut c_uint ,
1496
- message_out : * mut Option < & ' a Twine > ,
1497
- instruction_out : * mut Option < & ' a Value > ) ;
1495
+ cookie_out : & mut c_uint ,
1496
+ message_out : & mut Option < & ' a Twine > ,
1497
+ instruction_out : & mut Option < & ' a Value > ) ;
1498
1498
1499
1499
pub fn LLVMRustWriteDiagnosticInfoToString ( DI : & DiagnosticInfo , s : & RustString ) ;
1500
1500
pub fn LLVMRustGetDiagInfoKind ( DI : & DiagnosticInfo ) -> DiagnosticKind ;
@@ -1572,8 +1572,8 @@ extern "C" {
1572
1572
Identifier : * const c_char ,
1573
1573
) -> Option < & Module > ;
1574
1574
pub fn LLVMRustThinLTOGetDICompileUnit ( M : & Module ,
1575
- CU1 : * mut * mut c_void ,
1576
- CU2 : * mut * mut c_void ) ;
1575
+ CU1 : & mut * mut c_void ,
1576
+ CU2 : & mut * mut c_void ) ;
1577
1577
pub fn LLVMRustThinLTOPatchDICompileUnit ( M : & Module , CU : * mut c_void ) ;
1578
1578
1579
1579
pub fn LLVMRustLinkerNew ( M : & Module ) -> LinkerRef ;
0 commit comments