aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Herron <philip.herron@embecosm.com>2021-01-06 10:21:20 +0000
committerPhilip Herron <philip.herron@embecosm.com>2021-01-06 10:21:20 +0000
commit82d80bf20ec46fc9a1e5b44a5f1231b584bcb28e (patch)
tree7d4e51ec925daaa4bdb16bcc5e11e16d2af30282
parentaef9821d9b04fffadb4c0f9796652cec58da8902 (diff)
downloadgcc-82d80bf20ec46fc9a1e5b44a5f1231b584bcb28e.zip
gcc-82d80bf20ec46fc9a1e5b44a5f1231b584bcb28e.tar.gz
gcc-82d80bf20ec46fc9a1e5b44a5f1231b584bcb28e.tar.bz2
Fix bad naming of f64 named type in GIMPLE.
-rw-r--r--gcc/rust/backend/rust-compile-tyty.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/backend/rust-compile-tyty.h b/gcc/rust/backend/rust-compile-tyty.h
index e3c8a73..528f90e 100644
--- a/gcc/rust/backend/rust-compile-tyty.h
+++ b/gcc/rust/backend/rust-compile-tyty.h
@@ -173,7 +173,7 @@ public:
return;
case TyTy::FloatType::F64:
- translated = backend->named_type ("f32", backend->float_type (64),
+ translated = backend->named_type ("f64", backend->float_type (64),
Linemap::predeclared_location ());
return;
}