summaryrefslogtreecommitdiff
path: root/layout
diff options
context:
space:
mode:
authortrav90 <travawine@openmailbox.org>2018-02-04 12:31:30 -0600
committertrav90 <travawine@openmailbox.org>2018-02-04 12:31:30 -0600
commit344aeef7e65c0e651f716ebcbda0ef59837fc397 (patch)
tree77b44a2c440e9262e26ea626c07d4f8815b3fc74 /layout
parentd11b03c31b32d03a260ffd4cf73a25c92e50b897 (diff)
downloadaura-central-344aeef7e65c0e651f716ebcbda0ef59837fc397.tar.gz
Remove checks for GCC < 4.9
Diffstat (limited to 'layout')
-rw-r--r--layout/style/nsCSSPseudoElements.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/layout/style/nsCSSPseudoElements.h b/layout/style/nsCSSPseudoElements.h
index 657ef663e..eaf8d966b 100644
--- a/layout/style/nsCSSPseudoElements.h
+++ b/layout/style/nsCSSPseudoElements.h
@@ -111,8 +111,7 @@ private:
// which is a general gcc bug that we seem to have hit only on Android/x86.
#if defined(ANDROID) && defined(__i386__) && defined(__GNUC__) && \
!defined(__clang__)
-#if (MOZ_GCC_VERSION_AT_LEAST(4,8,0) && MOZ_GCC_VERSION_AT_MOST(4,8,4)) || \
- (MOZ_GCC_VERSION_AT_LEAST(4,9,0) && MOZ_GCC_VERSION_AT_MOST(4,9,2))
+#if (MOZ_GCC_VERSION_AT_LEAST(4,9,0) && MOZ_GCC_VERSION_AT_MOST(4,9,2))
__attribute__((noinline))
#endif
#endif