diff options
author | Rafael Avila de Espindola <espindola@google.com> | 2009-11-19 15:30:04 +0000 |
---|---|---|
committer | Rafael Espindola <espindola@gcc.gnu.org> | 2009-11-19 15:30:04 +0000 |
commit | 92fa7608a4401aa21b378c3cb786098e32677825 (patch) | |
tree | 2bceb2caf367c96e78ef2f30f853dfb57daaa53c /gcc/lto/lto.h | |
parent | 986ad1338d0634b347cf39619964ceb4d4850713 (diff) | |
download | gcc-92fa7608a4401aa21b378c3cb786098e32677825.zip gcc-92fa7608a4401aa21b378c3cb786098e32677825.tar.gz gcc-92fa7608a4401aa21b378c3cb786098e32677825.tar.bz2 |
re PR bootstrap/42096 (lto.c:289:7: error: implicit declaration of function 'strtoll')
2009-11-19 Rafael Avila de Espindola <espindola@google.com>
PR bootstrap/42096
* lto-plugin.c (claim_file_handler): Print offsets in hex.
2009-11-19 Rafael Avila de Espindola <espindola@google.com>
PR bootstrap/42096
* lto-elf.c (lto_elf_file_open): Use lto_parse_hex.
* lto.c (lto_parse_hex): New.
(lto_resolution_read): Use lto_parse_hex.
* lto.h (lto_parse_hex): New.
From-SVN: r154330
Diffstat (limited to 'gcc/lto/lto.h')
-rw-r--r-- | gcc/lto/lto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/lto/lto.h b/gcc/lto/lto.h index 3b92b41..0c4305a 100644 --- a/gcc/lto/lto.h +++ b/gcc/lto/lto.h @@ -57,5 +57,6 @@ struct lto_section_slot size_t len; }; +int64_t lto_parse_hex (const char *p); #endif /* LTO_H */ |