[test-suite] r200389 - Re-enable EH tests on ARM due to EHABI changes
Renato Golin
renato.golin at linaro.org
Wed Jan 29 03:53:43 PST 2014
Author: rengolin
Date: Wed Jan 29 05:53:43 2014
New Revision: 200389
URL: http://llvm.org/viewvc/llvm-project?rev=200389&view=rev
Log:
Re-enable EH tests on ARM due to EHABI changes
Modified:
test-suite/trunk/SingleSource/Benchmarks/Shootout-C++/Makefile
test-suite/trunk/SingleSource/Regression/C++/Makefile
Modified: test-suite/trunk/SingleSource/Benchmarks/Shootout-C++/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Benchmarks/Shootout-C%2B%2B/Makefile?rev=200389&r1=200388&r2=200389&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Benchmarks/Shootout-C++/Makefile (original)
+++ test-suite/trunk/SingleSource/Benchmarks/Shootout-C++/Makefile Wed Jan 29 05:53:43 2014
@@ -3,17 +3,7 @@ CXXFLAGS += -Wno-deprecated
CPPFLAGS += -Wno-deprecated
FP_TOLERANCE := 0.00000001
-# Exception Handling support in ARM still flaky
-# Re-enable this when support gets better
-ifeq ($(ARCH), ARM)
- # Darwin uses SjLj, others are either nothing or EHABI
- # See ARMMCAsmInfo.cpp
- ifeq ($(TARGET_OS), Darwin)
- DIRS=EH
- endif
-else
- DIRS=EH
-endif
+DIRS=EH
LDFLAGS += -lstdc++
include $(LEVEL)/SingleSource/Makefile.singlesrc
Modified: test-suite/trunk/SingleSource/Regression/C++/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Regression/C%2B%2B/Makefile?rev=200389&r1=200388&r2=200389&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Regression/C++/Makefile (original)
+++ test-suite/trunk/SingleSource/Regression/C++/Makefile Wed Jan 29 05:53:43 2014
@@ -6,17 +6,7 @@
#
LEVEL = ../../..
-# Exception Handling support in ARM still flaky
-# Re-enable this when support gets better
-ifeq ($(ARCH), ARM)
- # Darwin uses SjLj, others are either nothing or EHABI
- # See ARMMCAsmInfo.cpp
- ifeq ($(TARGET_OS), Darwin)
- DIRS=EH
- endif
-else
- DIRS=EH
-endif
+DIRS=EH
LDFLAGS += -lstdc++
include $(LEVEL)/SingleSource/Makefile.singlesrc
More information about the llvm-commits
mailing list