forked from OSchip/llvm-project
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:
parent
a30c0a1b3e
commit
4798763e14
|
@ -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 << "[";
|
||||
|
|
Loading…
Reference in New Issue