search for: use_list

Displaying 3 results from an estimated 3 matches for "use_list".

Did you mean: user_list
2012 Aug 02
2
[LLVMdev] Adding Value to use_list of instruction
I'd like to add a value to a use_list of a new instruction that I am inserting, is this possible? I was looking at using Value::addUse(Use&), however, this doesn't take a value, it takes a Use, so I need to pass the value as a use somehow? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL:...
2012 Aug 02
0
[LLVMdev] Adding Value to use_list of instruction
On Thu, Aug 2, 2012 at 2:52 PM, Ryan Taylor <ryta1203 at gmail.com> wrote: > I'd like to add a value to a use_list of a new instruction that I am > inserting, is this possible? > > I was looking at using Value::addUse(Use&), however, this doesn't take a > value, it takes a Use, so I need to pass the value as a use somehow? You normally shouldn't need to mess with use-lists directly; wha...
2012 Aug 02
1
[LLVMdev] Adding Value to use_list of instruction
...am trying to use later on to update any instructions who are no longer dominated. On Thu, Aug 2, 2012 at 2:55 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Thu, Aug 2, 2012 at 2:52 PM, Ryan Taylor <ryta1203 at gmail.com> wrote: > > I'd like to add a value to a use_list of a new instruction that I am > > inserting, is this possible? > > > > I was looking at using Value::addUse(Use&), however, this doesn't take a > > value, it takes a Use, so I need to pass the value as a use somehow? > > You normally shouldn't need to mess...