diff options
author | Ivan Krasin <krasin@chromium.org> | 2011-09-15 23:13:00 +0000 |
---|---|---|
committer | Ivan Krasin <krasin@chromium.org> | 2011-09-15 23:13:00 +0000 |
commit | 71280b55a3406c7dd4215449bf4a3ab216e78ffd (patch) | |
tree | 81cd494c9225445a8ad0b41ec0793bf30a76460c /tools/gold | |
parent | 6b5b79c7e8aec3138727e102e85aaf1c3a01765e (diff) | |
download | external_llvm-71280b55a3406c7dd4215449bf4a3ab216e78ffd.zip external_llvm-71280b55a3406c7dd4215449bf4a3ab216e78ffd.tar.gz external_llvm-71280b55a3406c7dd4215449bf4a3ab216e78ffd.tar.bz2 |
use 64-bit types instead of off_t/size_t to avoid the issue when
gold plugin is built with Large File Support (sizeof(off_t) == 64 on i686)
and the rest of LLVM is built w/o Large File Support
(sizeof(off_t) == 32 on i686) which corrupts the stack.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139873 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gold')
-rw-r--r-- | tools/gold/gold-plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gold/gold-plugin.cpp b/tools/gold/gold-plugin.cpp index 13d7ec2..6f547b3 100644 --- a/tools/gold/gold-plugin.cpp +++ b/tools/gold/gold-plugin.cpp @@ -246,7 +246,7 @@ static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file, return LDPS_ERR; } } else { - off_t offset = 0; + int64_t offset = 0; // Gold has found what might be IR part-way inside of a file, such as // an .a archive. if (file->offset) { |