aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/backend/rust-compile-extern.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/rust/backend/rust-compile-extern.h')
-rw-r--r--gcc/rust/backend/rust-compile-extern.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/gcc/rust/backend/rust-compile-extern.h b/gcc/rust/backend/rust-compile-extern.h
index 4355e4a..45a507e 100644
--- a/gcc/rust/backend/rust-compile-extern.h
+++ b/gcc/rust/backend/rust-compile-extern.h
@@ -110,10 +110,7 @@ public:
if (ctx->lookup_function_decl (fntype->get_ty_ref (), &lookup,
fntype->get_id (), fntype))
{
- reference
- = address_expression (lookup, build_pointer_type (TREE_TYPE (lookup)),
- ref_locus);
-
+ reference = address_expression (lookup, ref_locus);
return;
}
@@ -155,9 +152,7 @@ public:
ctx->insert_function_decl (fntype, fndecl);
- reference
- = address_expression (fndecl, build_pointer_type (TREE_TYPE (fndecl)),
- ref_locus);
+ reference = address_expression (fndecl, ref_locus);
}
private: