aboutsummaryrefslogtreecommitdiff
path: root/gcc/flags.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/flags.h')
-rw-r--r--gcc/flags.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/flags.h b/gcc/flags.h
index 84d5b39..5e45834 100644
--- a/gcc/flags.h
+++ b/gcc/flags.h
@@ -58,15 +58,16 @@ extern enum debug_info_level debug_info_level;
debugging information. */
extern bool use_gnu_debug_info_extensions;
-/* Enumerate visibility settings. */
+/* Enumerate visibility settings. This is deliberately ordered from most
+ to least visibility. */
#ifndef SYMBOL_VISIBILITY_DEFINED
#define SYMBOL_VISIBILITY_DEFINED
enum symbol_visibility
{
VISIBILITY_DEFAULT,
- VISIBILITY_INTERNAL,
+ VISIBILITY_PROTECTED,
VISIBILITY_HIDDEN,
- VISIBILITY_PROTECTED
+ VISIBILITY_INTERNAL
};
#endif