Fix a release-asserts warning. Debug functions should be marked used,

if there are no other uses.  If people don't need this routine
anymore, if should be deleted.

llvm-svn: 77274
This commit is contained in:
Mike Stump 2009-07-27 23:33:34 +00:00
parent a30c0a1b3e
commit 4798763e14
1 changed files with 2 additions and 0 deletions

View File

@ -109,6 +109,8 @@ bool LowerSwitch::runOnFunction(Function &F) {
// operator<< - Used for debugging purposes.
//
static raw_ostream& operator<<(raw_ostream &O,
const LowerSwitch::CaseVector &C) __attribute((used));
static raw_ostream& operator<<(raw_ostream &O,
const LowerSwitch::CaseVector &C) {
O << "[";