summaryrefslogtreecommitdiff
path: root/unittests/Makefile
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2009-06-25 02:04:04 +0000
committerJeffrey Yasskin <jyasskin@google.com>2009-06-25 02:04:04 +0000
commitdf5a7daff9c7664bff8b713e8ed5155319bc6041 (patch)
treed0a7b2a265916b1e0e36ef6423b56749d3429c9a /unittests/Makefile
parentb6c29d55123f6b8c3f9e4d56e4be653a1fd2a472 (diff)
downloadllvm-df5a7daff9c7664bff8b713e8ed5155319bc6041.tar.gz
llvm-df5a7daff9c7664bff8b713e8ed5155319bc6041.tar.bz2
llvm-df5a7daff9c7664bff8b713e8ed5155319bc6041.tar.xz
Add a JITEventListener interface that gets called back when a new function is
emitted or the machine code for a function is freed. Chris mentioned that we may also want a notification when a stub is emitted, but that'll be a future change. I intend to use this to tell oprofile where functions are emitted and what lines correspond to what addresses. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74157 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Makefile')
-rw-r--r--unittests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Makefile b/unittests/Makefile
index 04d12e01ad..1eb69abbc8 100644
--- a/unittests/Makefile
+++ b/unittests/Makefile
@@ -16,7 +16,7 @@ BUILD_ARCHIVE = 1
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
CPP.Flags += -Wno-variadic-macros
-PARALLEL_DIRS = ADT Support VMCore MC
+PARALLEL_DIRS = ADT ExecutionEngine Support VMCore MC
include $(LEVEL)/Makefile.common