File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ fn AssertGCPointerValid(bits: u64) {
102
102
103
103
#[ cfg( target_pointer_width = "32" ) ]
104
104
#[ inline( always) ]
105
- fn AssertIsGCPointerValid ( bits : u64 ) { }
105
+ fn AssertGCPointerValid ( bits : u32 ) { }
106
106
107
107
#[ cfg( target_pointer_width = "64" ) ]
108
108
#[ inline( always) ]
@@ -112,7 +112,7 @@ fn AssertGCPointerAlignment(bits: u64) {
112
112
113
113
#[ cfg( target_pointer_width = "32" ) ]
114
114
#[ inline( always) ]
115
- fn AssertGCPointerAlignment ( bits : u64 ) { }
115
+ fn AssertGCPointerAlignment ( bits : u32 ) { }
116
116
117
117
#[ inline( always) ]
118
118
pub fn Int32Value ( i : i32 ) -> JSVal {
@@ -269,7 +269,6 @@ impl JSVal {
269
269
}
270
270
271
271
#[ inline( always) ]
272
- #[ cfg( target_pointer_width = "64" ) ]
273
272
pub fn is_bigint ( & self ) -> bool {
274
273
self . toTag ( ) == ValueTag :: BIGINT as u64
275
274
}
You can’t perform that action at this time.
0 commit comments