summaryrefslogtreecommitdiff
path: root/tools/llvm-ld
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-05 21:03:39 +0000
committerDan Gohman <gohman@apple.com>2009-08-05 21:03:39 +0000
commit8608cf23dae982c7435120d800eaec2fca410ff6 (patch)
treee9cd0124f65310c916cd8f4eb585a6f1fafc2bb0 /tools/llvm-ld
parent7bfdca0206f51132b26094c6f83a5ac97ee0f943 (diff)
downloadllvm-8608cf23dae982c7435120d800eaec2fca410ff6.tar.gz
llvm-8608cf23dae982c7435120d800eaec2fca410ff6.tar.bz2
llvm-8608cf23dae982c7435120d800eaec2fca410ff6.tar.xz
Use (void *)(intptr_t) to cast function addresses to void*
for use with sys::Path::GetMainExecutable, to avoid warnings with -pedantic. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78245 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-ld')
-rw-r--r--tools/llvm-ld/llvm-ld.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llvm-ld/llvm-ld.cpp b/tools/llvm-ld/llvm-ld.cpp
index 62e5f09a08..17035e2a31 100644
--- a/tools/llvm-ld/llvm-ld.cpp
+++ b/tools/llvm-ld/llvm-ld.cpp
@@ -415,7 +415,7 @@ static void EmitShellScript(char **argv) {
// build tree to the destination file.
std::string ErrMsg;
sys::Path llvmstub = FindExecutable("llvm-stub.exe", argv[0],
- reinterpret_cast<void *>(&Optimize));
+ (void *)(intptr_t)&Optimize);
if (llvmstub.isEmpty())
PrintAndExit("Could not find llvm-stub.exe executable!");
@@ -642,7 +642,7 @@ int main(int argc, char **argv, char **envp) {
// Determine the locations of the llc and gcc programs.
sys::Path llc = FindExecutable("llc", argv[0],
- reinterpret_cast<void *>(&Optimize));
+ (void *)(intptr_t)&Optimize);
if (llc.isEmpty())
PrintAndExit("Failed to find llc");
@@ -672,7 +672,7 @@ int main(int argc, char **argv, char **envp) {
// Determine the locations of the llc and gcc programs.
sys::Path llc = FindExecutable("llc", argv[0],
- reinterpret_cast<void *>(&Optimize));
+ (void *)(intptr_t)&Optimize);
if (llc.isEmpty())
PrintAndExit("Failed to find llc");