diff options
Diffstat (limited to 'gcc/rust/rust-gcc.cc')
-rw-r--r-- | gcc/rust/rust-gcc.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/rust/rust-gcc.cc b/gcc/rust/rust-gcc.cc index 45ae1d5..ef7bd9c 100644 --- a/gcc/rust/rust-gcc.cc +++ b/gcc/rust/rust-gcc.cc @@ -99,7 +99,7 @@ get_identifier_from_string (const std::string &str) // Define the built-in functions that are exposed to GCCRust. -Gcc_backend::Gcc_backend () +Backend::Backend () { /* We need to define the fetch_and_add functions, since we use them for ++ and --. */ @@ -2474,5 +2474,5 @@ Backend::write_global_definitions ( Backend * rust_get_backend () { - return new Gcc_backend (); + return new Backend (); } |