We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcf0e80 commit 7ab0897Copy full SHA for 7ab0897
src/comp/metadata/creader.rs
@@ -53,7 +53,8 @@ fn visit_view_item(e: env, i: @ast::view_item) {
53
fn visit_item(e: env, i: @ast::item) {
54
alt i.node {
55
ast::item_native_mod(m) {
56
- if m.abi != ast::native_abi_rust && m.abi != ast::native_abi_cdecl {
+ if m.abi != ast::native_abi_rust && m.abi != ast::native_abi_cdecl &&
57
+ m.abi != ast::native_abi_c_stack_cdecl {
58
ret;
59
}
60
let cstore = e.sess.get_cstore();
0 commit comments