mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
12 lines
319 B
TableGen
12 lines
319 B
TableGen
|
include "llvm/TableGen/SearchableTable.td"
|
||
|
include "llvm/IR/Intrinsics.td"
|
||
|
|
||
|
def AMDGPUImageDMaskIntrinsicTable : GenericTable {
|
||
|
let FilterClass = "AMDGPUImageDMaskIntrinsic";
|
||
|
let Fields = ["Intr"];
|
||
|
|
||
|
let PrimaryKey = ["Intr"];
|
||
|
let PrimaryKeyName = "getAMDGPUImageDMaskIntrinsic";
|
||
|
let PrimaryKeyEarlyOut = 1;
|
||
|
}
|