about summary refs log tree commit diff
path: root/compiler
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-09-22 08:18:30 +0200
committerRalf Jung <post@ralfj.de>2024-09-22 08:18:30 +0200
commit27400ea4ed350f0a32e8423323d830c3ed139eeb (patch)
tree682bda2d93acf920b19eccc0519762da62399e93 /compiler
parent6ce376774c0bc46ac8be247bca93ff5a1287a8fc (diff)
downloadrust-27400ea4ed350f0a32e8423323d830c3ed139eeb.tar.gz
rust-27400ea4ed350f0a32e8423323d830c3ed139eeb.zip
interpret: remove outdated FIXME
Diffstat (limited to 'compiler')
-rw-r--r--compiler/rustc_const_eval/src/interpret/call.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/call.rs b/compiler/rustc_const_eval/src/interpret/call.rs
index 0f2b22f035b..9e7ed74fd5a 100644
--- a/compiler/rustc_const_eval/src/interpret/call.rs
+++ b/compiler/rustc_const_eval/src/interpret/call.rs
@@ -221,7 +221,6 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
         }
 
         // Fall back to exact equality.
-        // FIXME: We are missing the rules for "repr(C) wrapping compatible types".
         Ok(caller == callee)
     }