Displaying 1 result from an estimated 1 matches for "label_switch_body_begin".
Did you mean:
label_switch_body_begin1
2012 Jun 17
3
[LLVMdev] BlockAddress instruction is copied instead of cloned during module link?
...e=*/"my_func", mod);
func_my_func->setCallingConv(CallingConv::C);
}
AttrListPtr func_my_func_PAL;
func_my_func->setAttributes(func_my_func_PAL);
BasicBlock* label_issue_top = BasicBlock::Create(mod->getContext(),
"issue.top",func_my_func,0);
BasicBlock* label_switch_body_begin =
BasicBlock::Create(mod->getContext(), "switch.body.begin",func_my_func,0);
BasicBlock* label_switch_body_begin1 =
BasicBlock::Create(mod->getContext(), "switch.body.begin1",func_my_func,0);
BasicBlock* label_switch_end = BasicBlock::Create(mod->getContext(),...