comparison gcc/lto/common.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents 77e2b8dfacca
children 84e7813d76e9
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* Common code for the plugin and lto1. 1 /* Common code for the plugin and lto1.
2 Copyright (C) 2009 Free Software Foundation, Inc. 2 Copyright (C) 2009-2017 Free Software Foundation, Inc.
3 Contributed by Rafael Avila de Espindola (espindola@google.com). 3 Contributed by Rafael Avila de Espindola (espindola@google.com).
4 4
5 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or 7 the Free Software Foundation; either version 3 of the License, or
29 { 29 {
30 "DEFAULT", "PROTECTED", 30 "DEFAULT", "PROTECTED",
31 "INTERNAL", "HIDDEN" 31 "INTERNAL", "HIDDEN"
32 }; 32 };
33 33
34 const char *lto_resolution_str[9] __attribute__ ((visibility ("hidden"))) = 34 const char *lto_resolution_str[10] __attribute__ ((visibility ("hidden"))) =
35 { 35 {
36 "UNKNOWN", 36 "UNKNOWN",
37 "UNDEF", 37 "UNDEF",
38 "PREVAILING_DEF", 38 "PREVAILING_DEF",
39 "PREVAILING_DEF_IRONLY", 39 "PREVAILING_DEF_IRONLY",
40 "PREEMPTED_REG", 40 "PREEMPTED_REG",
41 "PREEMPTED_IR", 41 "PREEMPTED_IR",
42 "RESOLVED_IR", 42 "RESOLVED_IR",
43 "RESOLVED_EXEC", 43 "RESOLVED_EXEC",
44 "RESOLVED_DYN" 44 "RESOLVED_DYN",
45 "PREVAILING_DEF_IRONLY_EXP",
45 }; 46 };
46 47