本文整理汇总了C++中Constant::getUniqueInteger方法的典型用法代码示例。如果您正苦于以下问题:C++ Constant::getUniqueInteger方法的具体用法?C++ Constant::getUniqueInteger怎么用?C++ Constant::getUniqueInteger使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Constant
的用法示例。
在下文中一共展示了Constant::getUniqueInteger方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: PrintInfo
void PALatticeNode::PrintInfo() {
errs() << " Debug Info for PA Lattice Point " << "\n";
errs() << "bottom : " << this->getIsBottom() << " top : " << this->getIsTop() << " size: " << node.size() << "\n";
int i = 0;
for(map<Value*, Value*>::iterator it = node.begin(); it != node.end(); it++) {
Value* v1 = it->first;
Value* v2 = it->second;
//if(v2 == 0) continue;
string v1name = ((Value*)v1)->getName();
if(v1name.length() < 1) errs() << "Temporary Register " << i++ ;
else errs() << v1name;
errs() << "->";
if(isa<Constant>(v2)) {
Constant *c = dyn_cast<Constant>(v2);
errs() << c->getUniqueInteger() << "\n";
} else {
errs() << ((Value*)v2)->getName() << "\n";
}
}
}