From 8a781d9e2429814edf41bd3213b449c9d8f8bc13 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Mon, 2 May 2022 09:57:24 -0700 Subject: Remove remnants of the old Intel C++ compiler We don't support it any more. I don't think it has ever properly compiled Qt 6 (and it's no longer working for me against GCC 12's libstdc++ headers). If you report a bug against it, Intel support's first question is if you can try instead the new Clang/LLVM-based oneAPI C++ compiler. So we support only that one, which identifies itself as Q_CC_CLANG. Change-Id: I5ff8e16fcdcb4ffd9ab6fffd16eb57a092c8439e Reviewed-by: Ulf Hermann --- src/qml/compiler/qv4instr_moth_p.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src') diff --git a/src/qml/compiler/qv4instr_moth_p.h b/src/qml/compiler/qv4instr_moth_p.h index 7662f8461f..1dd4fcf0d8 100644 --- a/src/qml/compiler/qv4instr_moth_p.h +++ b/src/qml/compiler/qv4instr_moth_p.h @@ -342,11 +342,7 @@ QT_BEGIN_NAMESPACE #define MOTH_NUM_INSTRUCTIONS() (static_cast(Moth::Instr::Type::Debug_Wide) + 1) #if defined(Q_CC_GNU) -#if defined(Q_CC_INTEL) -// icc before version 1200 doesn't support computed goto, and at least up to version 18.0.0 the -// current use results in an internal compiler error. We could enable this if/when it gets fixed -// in a later version. -# elif defined(Q_OS_WASM) && !defined(__asmjs) +#if defined(Q_OS_WASM) && !defined(__asmjs) // Upstream llvm does not support computed goto for the wasm target, unlike the 'fastcomp' llvm fork // shipped with the emscripten SDK. Disable computed goto usage for non-fastcomp llvm on Wasm. #else -- cgit v1.2.3