diff options
author | Allan Sandfeld Jensen <[email protected]> | 2014-07-01 11:57:36 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <[email protected]> | 2014-07-01 23:13:32 +0200 |
commit | d51afdb74fdcb9a5c7e1fdaa763325c78d794d06 (patch) | |
tree | f68da50c1651955465eb5f0b20f2c21308b20452 /src/qml/jsruntime | |
parent | 27bbd51698c12891475dc27cb742265128e098d6 (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 <[email protected]>
Diffstat (limited to 'src/qml/jsruntime')
-rw-r--r-- | src/qml/jsruntime/jsruntime.pri | 7 |
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 } |