forked from OSchip/llvm-project
[ORC] Cast to const void* to silence a GCC warning. NFC.
This commit is contained in:
parent
df54f50437
commit
d2b71ea03d
|
@ -94,7 +94,7 @@ public:
|
|||
<< " bytes to " << ((Prot & orcrpctpc::WPF_Read) ? 'R' : '-')
|
||||
<< ((Prot & orcrpctpc::WPF_Write) ? 'W' : '-')
|
||||
<< ((Prot & orcrpctpc::WPF_Exec) ? 'X' : '-')
|
||||
<< " segment: local " << (void *)B.Buffer.data()
|
||||
<< " segment: local " << (const void *)B.Buffer.data()
|
||||
<< " -> target " << formatv("{0:x16}", B.Address) << "\n";
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue