Update IR's helper functions

This commit is contained in:
Jeehoon Kang
2020-04-11 12:20:53 +09:00
parent 6edb4665c0
commit 72ec63ea82
19 changed files with 505 additions and 125 deletions

View File

@@ -1,10 +1,11 @@
int main() {
long int l = 1;
long l2 = 2;
short int s = 3;
short s2 = 4;
int i = 5;
char c = 6;
long long l3 = 3;
short int s = 4;
short s2 = 5;
int i = 6;
char c = 7;
return l + l2 + s + s2 + i + c;
return (l + l2 + l3 + s + s2 + i + c) == 28;
}