Displaying 3 results from an estimated 3 matches for "mywarn".
2012 Oct 21
1
suppress *specific* warnings?
Not desperately important, but nice to have and possibly of use to
others, is the ability to suppress specific warnings rather than
suppressing warnings indiscriminately. I often know of a specific
warning that I want to ignore (because I know that's it's a false
positive/ignorable), but the current design of suppressWarnings() forces
me to ignore *any* warnings coming from the
2004 Jan 14
2
Banner doubts
Hi all. I'd like to know if someone knows how to implement a banner to be prompted just after a connection to a server is initialized. It's necessary doing that to warm who is trying to access the server just for security.
Regards,
Glauco
2006 Dec 01
1
[LLVMdev] DSGraph::computeCalleeCallerMapping failing
...e looks something like this:
TDDataStructures &TDD = getAnalysis<TDDataStructures>();
for(unsigned int i=0;i<SCC.size();i++) // Go through the functions in the SCC
{
Function *fun = SCC[i]->getFunction();
if( fun == NULL || fun->isExternal() )
{ MYWARN( true, "Encountered a null function pointer or external function\n" ); continue; }
// Iterate over the instructions in the function
for( inst_iterator instIt = inst_begin(fun); instIt!=inst_end(fun); instIt++ )
{
if( CallInst *CI = dyn_cast<CallInst>(&a...