mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-29 22:50:47 +00:00
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
This commit is contained in:
parent
dc42e3d831
commit
e42240517b
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user