(&self)
| 240 | } |
| 241 | |
| 242 | fn create_compiler_used_variable(&self) { |
| 243 | self.create_used_variable_impl( |
| 244 | "llvm.compiler.used\0".as_ptr().cast(), |
| 245 | &*self.compiler_used_statics.borrow(), |
| 246 | ); |
| 247 | } |
| 248 | |
| 249 | fn declare_c_main(&self, _fn_type: Self::Type) -> Option<Self::Function> { |
| 250 | // no point for gpu kernels |
no test coverage detected