about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2019-07-14 12:23:52 +0200
committerRalf Jung <post@ralfj.de>2019-07-14 12:23:52 +0200
commit6c293d8101618e0d3467a69adb3fb49a802de45d (patch)
tree571e05cd172c927bb7c70d092b3bb1d59af88e92 /src
parent26528b969f74e6a4fa1799cac24058879aa57bc4 (diff)
downloadrust-6c293d8101618e0d3467a69adb3fb49a802de45d.tar.gz
rust-6c293d8101618e0d3467a69adb3fb49a802de45d.zip
remove outdated comment
Diffstat (limited to 'src')
-rw-r--r--src/librustc_mir/interpret/terminator.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustc_mir/interpret/terminator.rs b/src/librustc_mir/interpret/terminator.rs
index 4813186ac6e..75690b4d361 100644
--- a/src/librustc_mir/interpret/terminator.rs
+++ b/src/librustc_mir/interpret/terminator.rs
@@ -280,7 +280,6 @@ impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
                             _ => bug!("unexpected callee ty: {:?}", instance_ty),
                         }
                     };
-                    // Rust and RustCall are compatible
                     let normalize_abi = |abi| match abi {
                         Abi::Rust | Abi::RustCall | Abi::RustIntrinsic | Abi::PlatformIntrinsic =>
                             // These are all the same ABI, really.