Skip to content

Commit 46b8a85

Browse files
add a benchmark testcase
1 parent 6bae60f commit 46b8a85

File tree

9 files changed

+724
-62
lines changed

9 files changed

+724
-62
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.PHONY: all run clean
2+
3+
all: large-branch.wat.cpp.imm.noreuse.exe large-branch.wat.cpp.imm.exe
4+
5+
large-branch.wat.cpp.imm.noreuse.exe: large-branch.wat.cpp
6+
g++ large-branch.wat.cpp -o large-branch.wat.cpp.imm.noreuse.exe -DUSE_IMM -I ../../../headers -lz3 -DENABLE_PROFILE_TIME -O3 -DNO_REUSE
7+
8+
large-branch.wat.cpp.imm.exe: large-branch.wat.cpp
9+
g++ large-branch.wat.cpp -o large-branch.wat.cpp.imm.exe -DUSE_IMM -I ../../../headers -lz3 -DENABLE_PROFILE_TIME -O3
10+
11+
run: all
12+
./large-branch.wat.cpp.imm.noreuse.exe
13+
./large-branch.wat.cpp.imm.exe
14+
15+
clean:
16+
rm -f *.exe

0 commit comments

Comments
 (0)