summaryrefslogtreecommitdiff
path: root/tests/analysis/disass/Makefile
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-01-14 00:04:49 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-01-14 00:04:49 (GMT)
commit20289d6a5d60d1bcf979ff7fdfc236486848d149 (patch)
tree06ad6792a175f6ca1994f6bb3709c2986629af68 /tests/analysis/disass/Makefile
parent2a6d92e2d55c0a7826137b2cc2e3148bb298abb9 (diff)
Handled irreducible loops without blocking.
Diffstat (limited to 'tests/analysis/disass/Makefile')
-rw-r--r--tests/analysis/disass/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/analysis/disass/Makefile b/tests/analysis/disass/Makefile
index 8155642..030e868 100644
--- a/tests/analysis/disass/Makefile
+++ b/tests/analysis/disass/Makefile
@@ -1,5 +1,5 @@
-EXECUTABLES=hello endofname
+EXECUTABLES=hello endofname irreducible
all: $(EXECUTABLES)
@@ -9,5 +9,8 @@ hello: hello.c
endofname: endofname.c
$(ARM_CROSS)gcc $< -o $@
+irreducible: irreducible.c
+ $(ARM_CROSS)gcc $< -o $@
+
clean:
rm -f $(EXECUTABLES)