Searched defs:RetOrArg (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp56 struct RetOrArg { struct in class:__anon22510::DAE
57 RetOrArg(const Function *F, unsigned Idx, bool IsArg) : F(F), Idx(Idx), function in struct:__anon22510::DAE::RetOrArg
63 /// Make RetOrArg comparable, so we can put it into a map.
64 bool operator<(const RetOrArg &O) const {
73 /// Make RetOrArg comparable, so we can easily iterate the multimap.
74 bool operator==(const RetOrArg &O) const {
92 RetOrArg CreateRet(const Function *F, unsigned Idx) {
93 return RetOrArg(F, Idx, false);
96 RetOrArg CreateArg(const Function *F, unsigned Idx) {
97 return RetOrArg(
[all...]

Completed in 83 milliseconds