mirror of
https://github.com/github/codeql.git
synced 2026-04-26 09:15:12 +02:00
14 lines
450 B
Plaintext
Generated
14 lines
450 B
Plaintext
Generated
// generated by codegen, do not edit
|
|
import codeql.rust.elements
|
|
import TestUtils
|
|
|
|
query predicate instances(AsmOperandNamed x) { toBeTested(x) and not x.isUnknown() }
|
|
|
|
query predicate getAsmOperand(AsmOperandNamed x, AsmOperand getAsmOperand) {
|
|
toBeTested(x) and not x.isUnknown() and getAsmOperand = x.getAsmOperand()
|
|
}
|
|
|
|
query predicate getName(AsmOperandNamed x, Name getName) {
|
|
toBeTested(x) and not x.isUnknown() and getName = x.getName()
|
|
}
|