(&mut self, load: &'ll Value)
| 647 | } |
| 648 | |
| 649 | fn nonnull_metadata(&mut self, load: &'ll Value) { |
| 650 | unsafe { |
| 651 | llvm::LLVMSetMetadata( |
| 652 | load, |
| 653 | llvm::MetadataType::MD_nonnull as c_uint, |
| 654 | llvm::LLVMMDNodeInContext(self.cx.llcx, ptr::null(), 0), |
| 655 | ); |
| 656 | } |
| 657 | } |
| 658 | |
| 659 | fn type_metadata(&mut self, _function: &'ll Value, _typeid: String) { |
| 660 | // LLVM CFI doesnt make sense on the GPU |
no outgoing calls
no test coverage detected