From: Chris Lattner Date: Thu, 27 Jul 2006 00:04:14 +0000 (+0000) Subject: Fix warning on linux X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=35a14467edb5c54d91159f42c76bf9fa1d00ea97;p=oota-llvm.git Fix warning on linux git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29314 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ExecutionEngine/JIT/Intercept.cpp b/lib/ExecutionEngine/JIT/Intercept.cpp index 490861d66c4..43298d6349f 100644 --- a/lib/ExecutionEngine/JIT/Intercept.cpp +++ b/lib/ExecutionEngine/JIT/Intercept.cpp @@ -52,14 +52,14 @@ static void runAtExitHandlers() { #include #endif void *FunctionPointers[] = { - (void *) stat, - (void *) fstat, - (void *) lstat, - (void *) stat64, - (void *) fstat64, - (void *) lstat64, - (void *) atexit, - (void *) mknod + (void *)(intptr_t) stat, + (void *)(intptr_t) fstat, + (void *)(intptr_t) lstat, + (void *)(intptr_t) stat64, + (void *)(intptr_t) fstat64, + (void *)(intptr_t) lstat64, + (void *)(intptr_t) atexit, + (void *)(intptr_t) mknod }; #endif // __linux__