Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
2
2024ustc-jianmu-compiler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
compiler_staff
2024ustc-jianmu-compiler
99230691260d93f6cce6bf638007022e44bd56f7
99230691260d93f6cce6bf638007022e44bd56f7
Switch branch/tag
2024ustc-jianmu-compiler
tests
2-ir-gen
autogen
testcases
lv1
scope.cminus
Find file
Normal view
History
Permalink
scope.cminus
146 Bytes
Edit
Web IDE
Newer
Older
Merge branch 'lab2-publish'
lxq
committed
Oct 07, 2024
1
2
3
4
5
6
7
8
9
10
11
12
void main(void) {
int a;
a = 3;
output(a);
{
int a;
a = 11;
output(a);
}
output(a);
return;
}