| 162 | } |
| 163 | |
| 164 | device::Program* Program::getDeviceProgram(const Device& device) const { |
| 165 | const auto it = devicePrograms_.find(&device); |
| 166 | if (it == devicePrograms_.cend()) { |
| 167 | return NULL; |
| 168 | } |
| 169 | return it->second; |
| 170 | } |
| 171 | |
| 172 | static bool adjustOptionsOnIgnoreEnv(std::string& cppstr) { |
| 173 | // if there is a -ignore-env, adjust options. |
no outgoing calls
no test coverage detected