summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPeng Cheng <gm4cheng@gmail.com>2013-05-01 15:04:18 +0000
committerPeng Cheng <gm4cheng@gmail.com>2013-05-01 15:04:18 +0000
commite42240517b9759fcc77220edc30fcb868e2b72c8 (patch)
treeae31cbc4d0a24538c40d795be3e6459c053e18b2 /include
parentdc42e3d831eee01f1552d9ccae4d088a4d154934 (diff)
downloadllvm-e42240517b9759fcc77220edc30fcb868e2b72c8.tar.gz
llvm-e42240517b9759fcc77220edc30fcb868e2b72c8.tar.bz2
llvm-e42240517b9759fcc77220edc30fcb868e2b72c8.tar.xz
get rid of windows warning:
warning C4946: reinterpret_cast used between related classes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180852 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/IR/GlobalValue.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/IR/GlobalValue.h b/include/llvm/IR/GlobalValue.h
index f398bc1b87..260302a594 100644
--- a/include/llvm/IR/GlobalValue.h
+++ b/include/llvm/IR/GlobalValue.h
@@ -19,6 +19,7 @@
#define LLVM_IR_GLOBALVALUE_H
#include "llvm/IR/Constant.h"
+#include "llvm/IR/DerivedTypes.h"
namespace llvm {
@@ -105,7 +106,7 @@ public:
/// getType - Global values are always pointers.
inline PointerType *getType() const {
- return reinterpret_cast<PointerType*>(User::getType());
+ return cast<PointerType>(User::getType());
}
static LinkageTypes getLinkOnceLinkage(bool ODR) {