Skip to content

Commit 821e67e

Browse files
committedJan 4, 2010
Change errs() to dbgs(). llvm-svn: 92516
1 parent 964a982 commit 821e67e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎llvm/lib/CodeGen/GCMetadata.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "llvm/Pass.h"
1818
#include "llvm/CodeGen/Passes.h"
1919
#include "llvm/Function.h"
20+
#include "llvm/Support/Debug.h"
2021
#include "llvm/Support/ErrorHandling.h"
2122
#include "llvm/Support/raw_ostream.h"
2223
using namespace llvm;
@@ -92,7 +93,7 @@ GCStrategy *GCModuleInfo::getOrCreateStrategy(const Module *M,
9293
}
9394
}
9495

95-
errs() << "unsupported GC: " << Name << "\n";
96+
dbgs() << "unsupported GC: " << Name << "\n";
9697
llvm_unreachable(0);
9798
}
9899

0 commit comments

Comments
 (0)
Please sign in to comment.