summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2014-11-18 14:13:58 -0800
committerMathieu Chartier <mathieuc@google.com>2014-11-19 13:37:44 -0800
commit88f21ca9e1c48d75346577b48dc143c02f57fa4a (patch)
tree24219ef18f720d868fbb7ea75173af7f349d8a1c /build
parentf91ffc6db742e6d429b287db2e1843393802e32f (diff)
downloadart-88f21ca9e1c48d75346577b48dc143c02f57fa4a.zip
art-88f21ca9e1c48d75346577b48dc143c02f57fa4a.tar.gz
art-88f21ca9e1c48d75346577b48dc143c02f57fa4a.tar.bz2
Fix transitive equality error in set.
SubstringComparator used to be broken since it didn't have transitive equality (ex. ab a ac). Now we use normal string comparison with set.lower_bound saves an additional 12 bytes. Also up frame size to 2700 to fix build. Change-Id: Ie8d41faef37591e7feed1f5d2ad6258430b8ffb6 (cherry picked from commit 4b8b4693ee19efbd2d8692ca0b47b71f3b7da663)
Diffstat (limited to 'build')
-rw-r--r--build/Android.common_build.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Android.common_build.mk b/build/Android.common_build.mk
index 7cb23f8..0d29927 100644
--- a/build/Android.common_build.mk
+++ b/build/Android.common_build.mk
@@ -244,7 +244,7 @@ art_target_non_debug_cflags := $(art_non_debug_cflags)
ifeq ($(HOST_OS),linux)
# Larger frame-size for host clang builds today
ifndef SANITIZE_HOST
- art_host_non_debug_cflags += -Wframe-larger-than=2600
+ art_host_non_debug_cflags += -Wframe-larger-than=2700
endif
art_target_non_debug_cflags += -Wframe-larger-than=1728
endif