aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/jsruntime.pri
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@digia.com>2014-07-01 11:57:36 +0200
committerAllan Sandfeld Jensen <allan.jensen@digia.com>2014-07-01 23:13:32 +0200
commitd51afdb74fdcb9a5c7e1fdaa763325c78d794d06 (patch)
treef68da50c1651955465eb5f0b20f2c21308b20452 /src/qml/jsruntime/jsruntime.pri
parent27bbd51698c12891475dc27cb742265128e098d6 (diff)
Remove redundant sse2 math flags
Qtbase already enables sse2 math by default now. This version is no longer needed and may actually hurt performance by triggering scheduling for pentium4. Change-Id: Ib3b6781fb0b92c1351344cc2d2f13101fa2b632b Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/qml/jsruntime/jsruntime.pri')
-rw-r--r--src/qml/jsruntime/jsruntime.pri7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/qml/jsruntime/jsruntime.pri b/src/qml/jsruntime/jsruntime.pri
index 72010d3fa8..c27aaa90d8 100644
--- a/src/qml/jsruntime/jsruntime.pri
+++ b/src/qml/jsruntime/jsruntime.pri
@@ -105,13 +105,6 @@ SOURCES += \
$$PWD/qv4string.cpp \
$$PWD/qv4value.cpp
-# Use SSE2 floating point math on 32 bit instead of the default
-# 387 to make test results pass on 32 and on 64 bit builds.
-linux-g++*:isEqual(QT_ARCH,i386) {
- QMAKE_CFLAGS += -march=pentium4 -msse2 -mfpmath=sse
- QMAKE_CXXFLAGS += -march=pentium4 -msse2 -mfpmath=sse
-}
-
valgrind {
DEFINES += V4_USE_VALGRIND
}