comparison gcc/lto/common.h @ 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) 2008 Free Software Foundation, Inc. 2 Copyright (C) 2008-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 file is part of GCC. 5 This file is part of GCC.
6 6
7 GCC is free software; you can redistribute it and/or modify it under 7 GCC is free software; you can redistribute it and/or modify it under
18 along with GCC; see the file COPYING3. If not see 18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */ 19 <http://www.gnu.org/licenses/>. */
20 20
21 21
22 22
23 static const char *lto_resolution_str[9] = 23 static const char *lto_resolution_str[10] =
24 { 24 {
25 "UNKNOWN", 25 "UNKNOWN",
26 "UNDEF", 26 "UNDEF",
27 "PREVAILING_DEF", 27 "PREVAILING_DEF",
28 "PREVAILING_DEF_IRONLY", 28 "PREVAILING_DEF_IRONLY",
29 "PREEMPTED_REG", 29 "PREEMPTED_REG",
30 "PREEMPTED_IR", 30 "PREEMPTED_IR",
31 "RESOLVED_IR", 31 "RESOLVED_IR",
32 "RESOLVED_EXEC", 32 "RESOLVED_EXEC",
33 "RESOLVED_DYN" 33 "RESOLVED_DYN",
34 "PREVAILING_DEF_IRONLY_EXP",
34 }; 35 };