Skip to content

Commit

Permalink
small change
Browse files Browse the repository at this point in the history
  • Loading branch information
liyanboy74 committed Aug 10, 2022
1 parent 3fe19c2 commit e10c7ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/Makefile.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Makefile Template for HTMixer
# by liyanboy74

htmixer = "../../build/htmixer.exe"
htmixer = "../../build/htmixer"
generate-dir = out

default : generate
Expand Down
7 changes: 5 additions & 2 deletions htmixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
#define MAX_VAR_NUM 65535
#define MAX_INPUT_FILE 10

#define MAX_VAR_INTERDEPENDENT 5
#define MAX_NESTED_LOOP 3

#define DEBUG 0

typedef struct{
Expand Down Expand Up @@ -413,12 +416,12 @@ int main(int argc,char* argv[])

buff=replace_loop_counter_val(buff);

for(j=0;j<3;j++)
for(j=0;j<MAX_NESTED_LOOP;j++)
{
buff=cheack_loops(buff);
}

for(j=0;j<5;j++)
for(j=0;j<MAX_VAR_INTERDEPENDENT;j++)
{
buff=replace_var_list(buff);
}
Expand Down

0 comments on commit e10c7ef

Please sign in to comment.