| 100 | } |
| 101 | |
| 102 | std::shared_ptr<Node> pop() { |
| 103 | |
| 104 | if (Stack.size() == 0) |
| 105 | return nullptr; |
| 106 | |
| 107 | auto Result = Stack.top(); |
| 108 | Stack.pop(); |
| 109 | |
| 110 | return Result; |
| 111 | } |
| 112 | |
| 113 | std::vector<unsigned> memoryIndices(llvm::Value &V) const { |
| 114 |
no test coverage detected