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 70d876b commit 15b92aeCopy full SHA for 15b92ae
gcc/jit/jit-playback.cc
@@ -529,6 +529,8 @@ const char* fn_attribute_to_string(gcc_jit_fn_attribute attr)
529
return "visibility";
530
case GCC_JIT_FN_ATTRIBUTE_COLD:
531
return "cold";
532
+ case GCC_JIT_FN_ATTRIBUTE_RETURNS_TWICE:
533
+ return "returns_twice";
534
}
535
return NULL;
536
gcc/jit/libgccjit.h
@@ -2104,6 +2104,7 @@ enum gcc_jit_fn_attribute
2104
GCC_JIT_FN_ATTRIBUTE_USED,
2105
GCC_JIT_FN_ATTRIBUTE_VISIBILITY,
2106
GCC_JIT_FN_ATTRIBUTE_COLD,
2107
+ GCC_JIT_FN_ATTRIBUTE_RETURNS_TWICE,
2108
};
2109
2110
/* Add an attribute to a function. */
0 commit comments