summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2010-05-29 18:34:46 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2010-06-16 09:45:17 (GMT)
commit7b0f85f91c7bf51b98e96621312a0f5e86349461 (patch)
tree6ec25432ba00899ce668b1ceb76ed9f35aec4171 /src
parent71ba2b0973d291e991e1498c266e69d6640c8531 (diff)
downloadQt-7b0f85f91c7bf51b98e96621312a0f5e86349461.zip
Qt-7b0f85f91c7bf51b98e96621312a0f5e86349461.tar.gz
Qt-7b0f85f91c7bf51b98e96621312a0f5e86349461.tar.bz2
Work around ICE in Intel C++ Compiler 11.1.072
qml/qdeclarativecompiledbindings.cpp(1141) (col. 11): internal error: 0_1855 Intel reports that this bug has been fixed with release 12 of ICC Reviewed-By: Alan Alpert
Diffstat (limited to 'src')
-rw-r--r--src/declarative/qml/qdeclarativecompiledbindings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativecompiledbindings.cpp b/src/declarative/qml/qdeclarativecompiledbindings.cpp
index ad05e80..507e47b 100644
--- a/src/declarative/qml/qdeclarativecompiledbindings.cpp
+++ b/src/declarative/qml/qdeclarativecompiledbindings.cpp
@@ -64,7 +64,7 @@ DEFINE_BOOL_CONFIG_OPTION(bindingsDump, QML_BINDINGS_DUMP);
Q_GLOBAL_STATIC(QDeclarativeFastProperties, fastProperties);
-#ifdef __GNUC__
+#if defined(Q_CC_GNU) && (!defined(Q_CC_INTEL) || __INTEL_COMPILER >= 1200)
# define QML_THREADED_INTERPRETER
#endif