aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/InstCombine/Android.mk
blob: 54c49ad4a31810576eaa916d37eff637ffb32f8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Only use this on the device or emulator.
ifneq ($(TARGET_ARCH),arm)

LOCAL_PATH:= $(call my-dir)

transforms_inst_combine_SRC_FILES :=	\
	InstCombineAddSub.cpp	\
	InstCombineAndOrXor.cpp	\
	InstCombineCalls.cpp	\
	InstCombineCasts.cpp	\
	InstCombineCompares.cpp	\
	InstCombineLoadStoreAlloca.cpp	\
	InstCombineMulDivRem.cpp	\
	InstCombinePHI.cpp	\
	InstCombineSelect.cpp	\
	InstCombineShifts.cpp	\
	InstCombineSimplifyDemanded.cpp	\
	InstCombineVectorOps.cpp	\
	InstructionCombining.cpp

# For the host
# =====================================================
include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(transforms_inst_combine_SRC_FILES)
LOCAL_MODULE:= libLLVMInstCombine

include $(LLVM_HOST_BUILD_MK)
include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_HOST_STATIC_LIBRARY)

# For the device
# =====================================================
include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(transforms_inst_combine_SRC_FILES)
LOCAL_MODULE:= libLLVMInstCombine

include $(LLVM_DEVICE_BUILD_MK)
include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_STATIC_LIBRARY)

endif