Displaying 1 result from an estimated 1 matches for "predicate_".
Did you mean:
predicate
2010 Aug 16
0
[LLVMdev] 1728 unused functions
Hi,
Now that clang is warning about unused functions, the self-host build is really noisy.
The majority of the unused functions are generated by TableGen:
/Volumes/Data/b/lib/Target/ARM/ARMGenDAGISel.inc:643:13: warning: unused function 'Predicate_t2_so_imm2part' [-Wunused-function]
inline bool Predicate_t2_so_imm2part(SDNode *inN) const {
^
Specifically this FIXME in DAGISelEmitter::run:
// FIXME: These are being used by hand written code, gross.
EmitPredicateFunctions(OS);
The targets are using the Predicate_* functio...