1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Debug Info Verifier: remove un-used argument in verifyDebugInfo.

No functionality change.

llvm-svn: 194917
This commit is contained in:
Manman Ren 2013-11-16 02:34:57 +00:00
parent 56d800bb1e
commit 73208636e1

View File

@ -219,7 +219,7 @@ namespace {
visitModuleIdents(M);
// Verify Debug Info.
verifyDebugInfo(M);
verifyDebugInfo();
// If the module is broken, abort at this time.
return abortIfBroken();
@ -335,7 +335,7 @@ namespace {
void VerifyBitcastType(const Value *V, Type *DestTy, Type *SrcTy);
void VerifyConstantExprBitcastType(const ConstantExpr *CE);
void verifyDebugInfo(Module &M);
void verifyDebugInfo();
void WriteValue(const Value *V) {
if (!V) return;
@ -2374,7 +2374,7 @@ void Verifier::visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI) {
}
}
void Verifier::verifyDebugInfo(Module &M) {
void Verifier::verifyDebugInfo() {
// Verify Debug Info.
if (!DisableDebugInfoVerifier) {
for (DebugInfoFinder::iterator I = Finder.compile_unit_begin(),