diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-15 17:25:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-15 17:25:14 +0000 |
commit | 3e909e8bb977d0b2bec9170bdb05fcdeacdb5de2 (patch) | |
tree | b33d32b0477ce520787f82f0ab55d9eb42788421 | |
parent | 7a5659176fb789227ee62752ae16b16a20c2376c (diff) |
fix warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22060 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/FindUsedTypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/FindUsedTypes.h b/include/llvm/Analysis/FindUsedTypes.h index 5f2ef8e6d3..92f3677502 100644 --- a/include/llvm/Analysis/FindUsedTypes.h +++ b/include/llvm/Analysis/FindUsedTypes.h @@ -60,7 +60,7 @@ public: // Make sure that any clients of this file link in PostDominators.cpp static IncludeFile -FIND_USED_TYPES_INCLUDE_FILE(reinterpret_cast<void*>(&FindUsedTypes::stub)); +FIND_USED_TYPES_INCLUDE_FILE((void*)(&FindUsedTypes::stub)); } // End llvm namespace |