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 1faa288 commit b776395Copy full SHA for b776395
src/libcore/rt.rs
@@ -33,12 +33,6 @@ extern mod rustrt {
33
// FIXME (#2861): This needs both the attribute, and the name prefixed with
34
// 'rt_', otherwise the compiler won't find it. To fix this, see
35
// gather_rust_rtcalls.
36
-#[rt(fail)]
37
-fn rt_fail(expr: *c_char, file: *c_char, line: size_t) {
38
- cleanup_stack_for_failure();
39
- rustrt::rust_upcall_fail(expr, file, line);
40
-}
41
-
42
#[rt(fail_)]
43
fn rt_fail_(expr: *c_char, file: *c_char, line: size_t) {
44
cleanup_stack_for_failure();
0 commit comments