aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Instrumentation/Android.mk7
-rw-r--r--lib/Transforms/Utils/Android.mk1
2 files changed, 6 insertions, 2 deletions
diff --git a/lib/Transforms/Instrumentation/Android.mk b/lib/Transforms/Instrumentation/Android.mk
index 85482a6..b2e6c76 100644
--- a/lib/Transforms/Instrumentation/Android.mk
+++ b/lib/Transforms/Instrumentation/Android.mk
@@ -1,12 +1,13 @@
LOCAL_PATH:= $(call my-dir)
instrumentation_SRC_FILES := \
+ AddressSanitizer.cpp \
EdgeProfiling.cpp \
GCOVProfiling.cpp \
Instrumentation.cpp \
- ProfilingUtils.cpp \
+ OptimalEdgeProfiling.cpp \
PathProfiling.cpp \
- OptimalEdgeProfiling.cpp
+ ProfilingUtils.cpp
# For the host
# =====================================================
@@ -17,6 +18,7 @@ LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(instrumentation_SRC_FILES)
include $(LLVM_HOST_BUILD_MK)
+include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_HOST_STATIC_LIBRARY)
# For the target
@@ -28,4 +30,5 @@ LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(instrumentation_SRC_FILES)
include $(LLVM_DEVICE_BUILD_MK)
+include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_STATIC_LIBRARY)
diff --git a/lib/Transforms/Utils/Android.mk b/lib/Transforms/Utils/Android.mk
index d41096f..183b400 100644
--- a/lib/Transforms/Utils/Android.mk
+++ b/lib/Transforms/Utils/Android.mk
@@ -20,6 +20,7 @@ transforms_utils_SRC_FILES := \
LowerInvoke.cpp \
LowerSwitch.cpp \
Mem2Reg.cpp \
+ ModuleUtils.cpp \
PromoteMemoryToRegister.cpp \
SSAUpdater.cpp \
SimplifyCFG.cpp \