FreeTensor
Loading...
Searching...
No Matches
check_conflict_id.h
Go to the documentation of this file.
1#ifndef FREE_TENSOR_CHECK_CONFLICT_ID_H
2#define FREE_TENSOR_CHECK_CONFLICT_ID_H
3
4#include <func.h>
5#include <stmt.h>
6
7namespace freetensor {
8
9void checkConflictId(const Stmt &ast);
10
11inline void checkConflictId(const Func &func) { checkConflictId(func->body_); }
12
13} // namespace freetensor
14
15#endif
SubTree< StmtNode > body_
Definition: func.h:56
Definition: allocator.h:9
void checkConflictId(const Stmt &ast)
Definition: check_conflict_id.cc:29
Ref< StmtNode > Stmt
Definition: ast.h:152