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 e17fec1 commit 6da8bbbCopy full SHA for 6da8bbb
gcc/jit/jit-playback.cc
@@ -512,6 +512,8 @@ const char* fn_attribute_to_string(gcc_jit_fn_attribute attr)
512
{
513
case GCC_JIT_FN_ATTRIBUTE_TARGET:
514
return "target";
515
+ case GCC_JIT_FN_ATTRIBUTE_VISIBILITY:
516
+ return "visibility";
517
}
518
return NULL;
519
gcc/jit/libgccjit.h
@@ -2041,6 +2041,7 @@ gcc_jit_type_set_packed (gcc_jit_type *type);
2041
enum gcc_jit_fn_attribute
2042
2043
GCC_JIT_FN_ATTRIBUTE_TARGET,
2044
+ GCC_JIT_FN_ATTRIBUTE_VISIBILITY,
2045
};
2046
2047
/* Add an attribute to a function. */
0 commit comments