| 187 | } |
| 188 | |
| 189 | BufferAllocations::KeyType BufferAllocations::TempBufferKey() const { |
| 190 | KeyType key; |
| 191 | key.all_buffers_.reserve(1); |
| 192 | key.all_buffers_.push_back(temp_buffer_base_.opaque()); |
| 193 | |
| 194 | return key; |
| 195 | } |
| 196 | |
| 197 | bool ShouldEmitLiteralInLlvmIr(const Literal& literal) { |
| 198 | // LLVM can sometimes do interesting optimizations using scalar constants. |
no test coverage detected