File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 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) {
102102
103103#[ cfg( target_pointer_width = "32" ) ]
104104#[ inline( always) ]
105- fn AssertIsGCPointerValid ( bits : u64 ) { }
105+ fn AssertGCPointerValid ( bits : u32 ) { }
106106
107107#[ cfg( target_pointer_width = "64" ) ]
108108#[ inline( always) ]
@@ -112,7 +112,7 @@ fn AssertGCPointerAlignment(bits: u64) {
112112
113113#[ cfg( target_pointer_width = "32" ) ]
114114#[ inline( always) ]
115- fn AssertGCPointerAlignment ( bits : u64 ) { }
115+ fn AssertGCPointerAlignment ( bits : u32 ) { }
116116
117117#[ inline( always) ]
118118pub fn Int32Value ( i : i32 ) -> JSVal {
@@ -269,7 +269,6 @@ impl JSVal {
269269 }
270270
271271 #[ inline( always) ]
272- #[ cfg( target_pointer_width = "64" ) ]
273272 pub fn is_bigint ( & self ) -> bool {
274273 self . toTag ( ) == ValueTag :: BIGINT as u64
275274 }
You can’t perform that action at this time.
0 commit comments