forked from OSchip/llvm-project
Fix Casting
Stop a gcc warning about casting away const. llvm-svn: 172465
This commit is contained in:
parent
4c66a58b64
commit
7155a7d061
|
@ -139,7 +139,7 @@ User *Use::getUser() const {
|
|||
const UserRef *ref = reinterpret_cast<const UserRef*>(End);
|
||||
return ref->getInt()
|
||||
? ref->getPointer()
|
||||
: (User*)End;
|
||||
: reinterpret_cast<User*>(const_cast<Use*>(End));
|
||||
}
|
||||
|
||||
} // End llvm namespace
|
||||
|
|
Loading…
Reference in New Issue