summaryrefslogtreecommitdiff
path: root/tests/analysis/disass/Makefile
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-01-14 07:43:32 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-01-14 07:43:32 (GMT)
commita4fde950b940582a0e21a84c6c98a79f945fde02 (patch)
tree811f96acedac6812e01bb556773d52ac55312455 /tests/analysis/disass/Makefile
parent20289d6a5d60d1bcf979ff7fdfc236486848d149 (diff)
Detected self loops in basic blocks.
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 030e868..ef70dec 100644
--- a/tests/analysis/disass/Makefile
+++ b/tests/analysis/disass/Makefile
@@ -1,5 +1,5 @@
-EXECUTABLES=hello endofname irreducible
+EXECUTABLES=hello endofname irreducible selfloop
all: $(EXECUTABLES)
@@ -12,5 +12,8 @@ endofname: endofname.c
irreducible: irreducible.c
$(ARM_CROSS)gcc $< -o $@
+selfloop: selfloop.c
+ $(ARM_CROSS)gcc $< -o $@
+
clean:
rm -f $(EXECUTABLES)