-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Medium
-
Code Generation Tools
-
CODEGEN-13482
-
-
-
default
-
The attached test case has this code ...
// Fails
#define RESTRICT restrict
// Works
// #define RESTRICT
void test_func (
const cfloat * RESTRICT X,
cfloat * RESTRICT Y)
{
for(int vt = 0u; vt < 10; vt++) Y[vt] = X[vt];
}
Build it ...
% cl7x --opt_level=2 file.cpp >> file.cpp, line 11: INTERNAL ERROR: no match for MCALL This may be a serious problem. Please contact customer support with a description of this problem and a sample of the source files that caused this INTERNAL ERROR message to appear. Cannot continue compilation - ABORTING! >> Compilation failure