diff options
Diffstat (limited to 'gcc/lto/lto-lang.c')
-rw-r--r-- | gcc/lto/lto-lang.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/lto/lto-lang.c b/gcc/lto/lto-lang.c index c65d916..5872928 100644 --- a/gcc/lto/lto-lang.c +++ b/gcc/lto/lto-lang.c @@ -938,8 +938,10 @@ lto_type_for_mode (enum machine_mode mode, int unsigned_p) return NULL_TREE; } -static int -lto_global_bindings_p (void) +/* Return true if we are in the global binding level. */ + +static bool +lto_global_bindings_p (void) { return cfun == NULL; } |