Lines Matching full:semantic
16 I recently added a semantic check to the Flang compiler front end. This document
32 `INTENT(INOUT)`. I implemented this semantic check. Specifically, I changed
112 This new semantic check would depend on several types of information -- the
115 been created, name resolution had already happened, and expression semantic
118 Most semantic checks for statements are implemented by walking the parse tree
120 method. The infrastructure for walking the parse tree for statement semantic
157 Since my semantic check was focused on DO CONCURRENT statements, I added it to
158 the file `lib/Semantics/check-do.cpp` where most of the semantic checking for
198 depends is established during semantic processing for expressions, and the
199 semantic processing for expressions happens before semantic checking for DO
219 existing framework used in DO construct semantic checking that traversed an
235 constant folding. After an expression has undergone semantic analysis, the
297 This time, I made sure to invoke semantic checking. Here's the command I used:
379 used exclusively for DO construct semantic checking (currently), I put their