rustc: Add a new "C stack cdecl" native ABI

This commit is contained in:
Patrick Walton 2011-09-28 12:58:03 -07:00
parent 657e3ffaf5
commit f7d0c1cec3
6 changed files with 14 additions and 1 deletions

View file

@ -5715,6 +5715,9 @@ fn register_native_fn(ccx: @crate_ctxt, sp: span, path: [str], name: str,
uses_retptr = false;
cast_to_i32 = true;
}
ast::native_abi_c_stack_cdecl. {
fail "C stack cdecl ABI shouldn't have a wrapper";
}
}
let lltaskptr;