标签: llvm
我想得到循环归纳变量的名称,获取名称是否正确?
void analyze_loop(Loop* loop) { errs() << loop->getCanonicalInductionVariable()->getName() << "\n"; }
答案 0 :(得分:3)
是的,这看起来是正确的 - 当然,假设可以找到规范的归纳变量。