[llvm-commits] [llvm] r155014 - /llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp

Jakub Staszak kubastaszak at gmail.com
Wed Apr 18 11:26:39 PDT 2012


On Apr 18, 2012, at 7:46 PM, Jim Grosbach wrote:

> 
> +      PrintWarning(Inst.TheDef->getLoc(),
> +                   Twine("Warning: mayStore flag explicitly set on ") +
> +                   "instruction, but flag already inferred from pattern.\n");

I think it  would be cheaper to write it as:
      PrintWarning(Inst.TheDef->getLoc(),
                   "Warning: mayStore flag explicitly set on "
                   "instruction, but flag already inferred from pattern.\n");


- Kuba



More information about the llvm-commits mailing list