| Nicolai Haehnle | b29ee70 | 2018-06-21 13:37:31 +0000 | [diff] [blame] | 1 | include "llvm/TableGen/SearchableTable.td" |
| 2 | include "llvm/IR/Intrinsics.td" | ||||
| 3 | |||||
| 4 | def AMDGPUImageDMaskIntrinsicTable : GenericTable { | ||||
| 5 | let FilterClass = "AMDGPUImageDMaskIntrinsic"; | ||||
| 6 | let Fields = ["Intr"]; | ||||
| 7 | |||||
| 8 | let PrimaryKey = ["Intr"]; | ||||
| 9 | let PrimaryKeyName = "getAMDGPUImageDMaskIntrinsic"; | ||||
| 10 | let PrimaryKeyEarlyOut = 1; | ||||
| 11 | } | ||||