1
Fork 0

rustc: Implement C stack stdcall

This commit is contained in:
Patrick Walton 2011-10-03 13:59:38 -07:00
parent 9be0dc1250
commit 968b66ad40
7 changed files with 19 additions and 2 deletions

View file

@ -148,6 +148,7 @@ fn enc_sty(w: io::writer, cx: @ctxt, st: ty::sty) {
native_abi_llvm. { w.write_char('l'); }
native_abi_x86stdcall. { w.write_char('s'); }
native_abi_c_stack_cdecl. { w.write_char('C'); }
native_abi_c_stack_stdcall. { w.write_char('S'); }
}
enc_ty_fn(w, cx, args, out, return_val, []);
}