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.
2 parents 6358417 + 0e46852 commit 705bab9Copy full SHA for 705bab9
core/src/intrinsics/mir.rs
@@ -259,6 +259,8 @@ define!("mir_unreachable", fn Unreachable() -> BasicBlock);
259
define!("mir_drop", fn Drop<T>(place: T, goto: BasicBlock));
260
define!("mir_drop_and_replace", fn DropAndReplace<T>(place: T, value: T, goto: BasicBlock));
261
define!("mir_call", fn Call<T>(place: T, goto: BasicBlock, call: T));
262
+define!("mir_storage_live", fn StorageLive<T>(local: T));
263
+define!("mir_storage_dead", fn StorageDead<T>(local: T));
264
define!("mir_retag", fn Retag<T>(place: T));
265
define!("mir_move", fn Move<T>(place: T) -> T);
266
define!("mir_static", fn Static<T>(s: T) -> &'static T);
0 commit comments