aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/backend/rust-compile-tyty.h
diff options
context:
space:
mode:
authorPhilip Herron <philip.herron@embecosm.com>2021-02-11 15:04:26 +0000
committerPhilip Herron <herron.philip@googlemail.com>2021-02-13 09:54:47 +0000
commit3ae8d55860cbe95f80d5e5c76ca71883dbde0e10 (patch)
tree3fc0385c18fe11a4ceb8ae34ad3c208f027efebb /gcc/rust/backend/rust-compile-tyty.h
parentfac8276f737351afbde34a85f2b6c224b400313b (diff)
downloadgcc-3ae8d55860cbe95f80d5e5c76ca71883dbde0e10.zip
gcc-3ae8d55860cbe95f80d5e5c76ca71883dbde0e10.tar.gz
gcc-3ae8d55860cbe95f80d5e5c76ca71883dbde0e10.tar.bz2
Add char type
This might need changes in the Lexer to allow for wchar_t to be preserved. Addresses #85
Diffstat (limited to 'gcc/rust/backend/rust-compile-tyty.h')
-rw-r--r--gcc/rust/backend/rust-compile-tyty.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/rust/backend/rust-compile-tyty.h b/gcc/rust/backend/rust-compile-tyty.h
index 0629cbe..f591696 100644
--- a/gcc/rust/backend/rust-compile-tyty.h
+++ b/gcc/rust/backend/rust-compile-tyty.h
@@ -201,6 +201,12 @@ public:
Linemap::predeclared_location ());
}
+ void visit (TyTy::CharType &) override
+ {
+ translated = backend->named_type ("char", backend->wchar_type (),
+ Linemap::predeclared_location ());
+ }
+
private:
TyTyCompile (::Backend *backend)
: backend (backend), translated (nullptr),