about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2017-07-25 22:10:10 +0200
committerest31 <MTest31@outlook.com>2017-07-25 22:10:10 +0200
commit90ac6408baa80fcd7fa28bc98af6046dba8c4bbb (patch)
tree8a770ed8d696edd657aab041df0345b2b02d2d46 /src/libsyntax
parentc417ee9ae8c30ac307c58591da46cf62e91caac1 (diff)
downloadrust-90ac6408baa80fcd7fa28bc98af6046dba8c4bbb.tar.gz
rust-90ac6408baa80fcd7fa28bc98af6046dba8c4bbb.zip
Switch to begin_panic again
In https://github.com/rust-lang/rust/pull/42938 we made the compiler
emit a call to begin_panic_new in order to pass column info to it. Now
with stage0 updated (https://github.com/rust-lang/rust/pull/43320),
we can safely change begin_panic and start emitting calls for it again.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ext/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/build.rs b/src/libsyntax/ext/build.rs
index 2555bf6dea7..d8140417214 100644
--- a/src/libsyntax/ext/build.rs
+++ b/src/libsyntax/ext/build.rs
@@ -774,7 +774,7 @@ impl<'a> AstBuilder for ExtCtxt<'a> {
         let expr_loc_ptr = self.expr_addr_of(span, expr_loc_tuple);
         self.expr_call_global(
             span,
-            self.std_path(&["rt", "begin_panic_new"]),
+            self.std_path(&["rt", "begin_panic"]),
             vec![
                 self.expr_str(span, msg),
                 expr_loc_ptr])