mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
Get rid of an unnecessary use of the * and & operators.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204673 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -980,7 +980,7 @@ DIE *DwarfUnit::getOrCreateTypeDIE(const MDNode *TyNode) {
|
|||||||
|
|
||||||
DIType Ty(TyNode);
|
DIType Ty(TyNode);
|
||||||
assert(Ty.isType());
|
assert(Ty.isType());
|
||||||
assert(*&Ty == resolve(Ty.getRef()) &&
|
assert(Ty == resolve(Ty.getRef()) &&
|
||||||
"type was not uniqued, possible ODR violation.");
|
"type was not uniqued, possible ODR violation.");
|
||||||
|
|
||||||
// Construct the context before querying for the existence of the DIE in case
|
// Construct the context before querying for the existence of the DIE in case
|
||||||
|
Reference in New Issue
Block a user