Skip to content

Commit

Permalink
ccalltest.c: ifndef Intel compiler for complex int (JuliaLang#18193)
Browse files Browse the repository at this point in the history
Complex int is GNU extension that Intel compiler does not
support currently. JuliaLang#17145
  • Loading branch information
Ehsan Totoni authored and mfasi committed Sep 5, 2016
1 parent 60aa5f3 commit 42d6e57
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ccalltest.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,8 @@ typedef struct {
complex double r89;
} struct_huge4b;

// Intel compiler does not currently support complex int (which is GNU extension)
#ifndef _COMPILER_INTEL_
typedef struct {
complex int r1;
complex int r2;
Expand All @@ -314,6 +316,7 @@ typedef struct {
complex int r8;
complex int r9;
} struct_huge5b;
#endif // _COMPILER_INTEL_


JL_DLLEXPORT struct1 test_1(struct1 a, float b) {
Expand Down Expand Up @@ -503,8 +506,11 @@ test_huge(3b, r1);
test_huge(3c, r1);
test_huge(4a, r12);
test_huge(4b, r12);
// Intel compiler does not currently support complex int (which is GNU extension)
#ifndef _COMPILER_INTEL_
test_huge(5a, r1);
test_huge(5b, r1);
#endif // _COMPILER_INTEL_

JL_DLLEXPORT int get_c_int(void)
{
Expand Down

0 comments on commit 42d6e57

Please sign in to comment.