diff options
author | Philip Herron <herron.philip@googlemail.com> | 2020-05-18 23:25:16 +0100 |
---|---|---|
committer | Philip Herron <philip.herron@embecosm.com> | 2020-11-28 21:13:14 +0000 |
commit | 1acf8eba36b06ab816866821542d189935ba360e (patch) | |
tree | 43446a57ac5ba7fbf43058181d5bbfb2a5cc8340 /gcc/rust/analysis/rust-resolution.h | |
parent | 2be82f24b4150c0c71ae45c17e11a7a159c2dcc4 (diff) | |
download | gcc-1acf8eba36b06ab816866821542d189935ba360e.zip gcc-1acf8eba36b06ab816866821542d189935ba360e.tar.gz gcc-1acf8eba36b06ab816866821542d189935ba360e.tar.bz2 |
Add type resolution to CallExpr
More work will be added here but there is enough to start working
on the initial AST -> Gimple transformations now.
Diffstat (limited to 'gcc/rust/analysis/rust-resolution.h')
-rw-r--r-- | gcc/rust/analysis/rust-resolution.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/rust/analysis/rust-resolution.h b/gcc/rust/analysis/rust-resolution.h index ee1c692..0105a8b 100644 --- a/gcc/rust/analysis/rust-resolution.h +++ b/gcc/rust/analysis/rust-resolution.h @@ -238,6 +238,7 @@ protected: std::vector<AST::IdentifierPattern> letPatternBuffer; std::vector<AST::Type *> typeBuffer; std::vector<std::string> typeComparisonBuffer; + std::vector<AST::Function *> functionLookup; }; } // namespace Analysis |