HomeSort by relevance Sort by last modified time
    Searched defs:replaceAllUsesWith (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/VMCore/
Value.cpp 297 void Value::replaceAllUsesWith(Value *New) {
298 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
299 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
DebugInfo.cpp 314 /// replaceAllUsesWith - Replace all uses of debug info referenced by
316 void DIType::replaceAllUsesWith(DIDescriptor &D) {
321 // legitimate situations where they want to replaceAllUsesWith() on something
323 // this detail by allowing a value to be replaced with replaceAllUsesWith()
329 Node->replaceAllUsesWith(const_cast<Value*>(V));
334 /// replaceAllUsesWith - Replace all uses of debug info referenced by
336 void DIType::replaceAllUsesWith(MDNode *D) {
341 // legitimate situations where they want to replaceAllUsesWith() on something
343 // this detail by allowing a value to be replaced with replaceAllUsesWith()
349 Node->replaceAllUsesWith(const_cast<Value*>(V))
    [all...]

Completed in 230 milliseconds