Skip to content

Commit

Permalink
10.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ab25cq committed Jun 13, 2019
1 parent d544146 commit 6f483b4
Show file tree
Hide file tree
Showing 15 changed files with 31 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

version 10.4.6

Fixed block size bug

version 10.4.5

Faster compile speed.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# clover2 computer language

version 10.4.5
version 10.4.6

サポートしている機能

Expand Down
4 changes: 4 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

clover2 (10.4.6-1) unstable; urgency=medium

* Fixed the block size bug

clover2 (10.4.5-1) unstable; urgency=medium

* Faster compile speed.
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Section: unknown
Priority: optional
Maintainer: Daisuke Minato <[email protected]>
Build-Depends: debhelper (>= 9), autotools-dev, libpcre3-dev, libreadline-dev, clang, libreadline7
Standards-Version: 10.4.5
Standards-Version: 10.4.6
Homepage: https://github.com/ab25cq/clover2/wiki
Vcs-Git: https://github.com/ab25cq/clover2.git

Expand Down
6 changes: 3 additions & 3 deletions debian/files
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
clover2-dbgsym_10.4.5-1_amd64.deb debug extra
clover2_10.4.5-1_amd64.buildinfo unknown optional
clover2_10.4.5-1_amd64.deb unknown optional
clover2-dbgsym_10.4.6-1_amd64.deb debug extra
clover2_10.4.6-1_amd64.buildinfo unknown optional
clover2_10.4.6-1_amd64.deb unknown optional
4 changes: 4 additions & 0 deletions manual/changelog-en.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

version 10.4.6

Fixed block size bug

version 10.4.5

Faster compile speed.
Expand Down
4 changes: 4 additions & 0 deletions manual/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
English page is here [>> English page](changelog-en)

version 10.4.6

Fixed block size bug

version 10.4.5

Faster compile speed.
Expand Down
2 changes: 1 addition & 1 deletion src/compiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static BOOL class_compiler(char* fname)

int gARGC;
char** gARGV;
char* gVersion = "10.4.5";
char* gVersion = "10.4.6";

char gScriptDirPath[PATH_MAX];
BOOL gRunningCompiler = TRUE;
Expand Down
2 changes: 1 addition & 1 deletion src/get_type.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ static BOOL is_shell_mode(char* source, char* fname, sVarTable* lv_table)

int gARGC;
char** gARGV;
char* gVersion = "10.4.5";
char* gVersion = "10.4.6";

char gScriptDirPath[PATH_MAX];
BOOL gRunningCompiler = FALSE;
Expand Down
2 changes: 1 addition & 1 deletion src/interpreter.c
Original file line number Diff line number Diff line change
Expand Up @@ -2294,7 +2294,7 @@ static void compiler_final()

int gARGC;
char** gARGV;
char* gVersion = "10.4.5";
char* gVersion = "10.4.6";

char gScriptDirPath[PATH_MAX];
BOOL gRunningCompiler = FALSE;
Expand Down
2 changes: 1 addition & 1 deletion src/jit_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void set_signal()

int gARGC;
char** gARGV;
char* gVersion = "10.4.5";
char* gVersion = "10.4.6";
BOOL gCompilingCore = FALSE;

char gScriptDirPath[PATH_MAX];
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ static void set_signal()

int gARGC;
char** gARGV;
char* gVersion = "10.4.5";
char* gVersion = "10.4.6";
BOOL gCompilingCore = FALSE;

char gScriptDirPath[PATH_MAX];
Expand Down
4 changes: 3 additions & 1 deletion src/node_block.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ void append_node_to_node_block(sNodeBlock* node_block, unsigned int node)
int new_size = node_block->mSizeNodes * 2;
node_block->mNodes = MREALLOC(node_block->mNodes, sizeof(unsigned int)*new_size);
memset(node_block->mNodes + node_block->mSizeNodes, 0, sizeof(unsigned int)*(new_size-node_block->mSizeNodes));

node_block->mSizeNodes = new_size;
}

node_block->mNodes[node_block->mNumNodes] = node;
Expand Down Expand Up @@ -419,4 +421,4 @@ BOOL compile_block_with_result(sNodeBlock* block, sCompileInfo* info)
info->lv_table = old_table;

return TRUE;
}
}
4 changes: 2 additions & 2 deletions version_up.cl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION1:="10.4.4"
VERSION2:="10.4.5"
VERSION1:="10.4.5"
VERSION2:="10.4.6"

{ "src/interpreter.c",
"src/compiler.c",
Expand Down
Binary file added version_up.ocl
Binary file not shown.

0 comments on commit 6f483b4

Please sign in to comment.