reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
80 f = LLVMGetFirstFunction(M); 81 while (f) { 82 if (LLVMIsDeclaration(f)) { 83 printf("FunctionDeclaration: %s\n", LLVMGetValueName(f)); 90 printf("FunctionDefinition: %s [#bb=%u]\n", LLVMGetValueName(f), 91 LLVMCountBasicBlocks(f)); 93 for (bb = LLVMGetFirstBasicBlock(f); bb; 109 f = LLVMGetNextFunction(f); 109 f = LLVMGetNextFunction(f);