aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/rust-backend.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/rust/rust-backend.h')
-rw-r--r--gcc/rust/rust-backend.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/rust/rust-backend.h b/gcc/rust/rust-backend.h
index 1af76cf..105b2ea 100644
--- a/gcc/rust/rust-backend.h
+++ b/gcc/rust/rust-backend.h
@@ -842,7 +842,9 @@ public:
// Look up a named built-in function in the current backend implementation.
// Returns NULL if no built-in function by that name exists.
- virtual Bfunction *lookup_builtin (const std::string &) = 0;
+ virtual Bfunction *lookup_gcc_builtin (const std::string &) = 0;
+
+ virtual Bfunction *lookup_builtin_by_rust_name (const std::string &) = 0;
// Utility.