When using "DEBUG( dbgs() << "whatever" );" Do I need to insert a line
terminator. Like "DEBUG( dbgs() << "whatever" << std::endl );"
Thanks
Jeff Kunkel
When using "DEBUG( dbgs() << "whatever" );" Do I need to insert a line
terminator. Like "DEBUG( dbgs() << "whatever" << std::endl );"
Thanks
Jeff Kunkel
Yes. Though the "llvm-way" is to use a newline ("whatever\n") instead of std::endl.
-bw