We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b7f84d commit 9bcef58Copy full SHA for 9bcef58
openmp/runtime/tools/generate-def.pl
@@ -108,8 +108,8 @@ (\%)
108
foreach my $entry ( keys( %$entries ) ) {
109
if ( not $entries->{ $entry }->{ obsolete } ) {
110
my $ordinal = $entries->{ $entry }->{ ordinal };
111
- # omp_alloc and omp_free are C/C++ only functions, skip "1000+ordinal" for them
112
- if ( $entry =~ m{\A[ok]mp_} and $entry ne "omp_alloc" and $entry ne "omp_free" ) {
+ # omp_alloc, omp_calloc and omp_free are C/C++ only functions, skip "1000+ordinal" for them
+ if ( $entry =~ m{\A[ok]mp_} and $entry ne "omp_alloc" and $entry ne "omp_calloc" and $entry ne "omp_free" ) {
113
if ( not defined( $ordinal ) ) {
114
runtime_error(
115
"Bad entry \"$entry\": ordinal number is not specified."
0 commit comments