mirror of
https://github.com/github/codeql.git
synced 2025-12-22 11:46:32 +01:00
C++: Sync identical files.
This commit is contained in:
@@ -38,6 +38,12 @@ private int getBinaryInstructionValue(BinaryInstruction instr) {
|
|||||||
or
|
or
|
||||||
instr instanceof DivInstruction and result = div(left, right)
|
instr instanceof DivInstruction and result = div(left, right)
|
||||||
or
|
or
|
||||||
|
instr instanceof BitOrInstruction and result = bitOr(left, right)
|
||||||
|
or
|
||||||
|
instr instanceof BitAndInstruction and result = bitAnd(left, right)
|
||||||
|
or
|
||||||
|
instr instanceof BitXorInstruction and result = bitXor(left, right)
|
||||||
|
or
|
||||||
instr instanceof CompareEQInstruction and result = compareEQ(left, right)
|
instr instanceof CompareEQInstruction and result = compareEQ(left, right)
|
||||||
or
|
or
|
||||||
instr instanceof CompareNEInstruction and result = compareNE(left, right)
|
instr instanceof CompareNEInstruction and result = compareNE(left, right)
|
||||||
|
|||||||
@@ -38,6 +38,12 @@ private int getBinaryInstructionValue(BinaryInstruction instr) {
|
|||||||
or
|
or
|
||||||
instr instanceof DivInstruction and result = div(left, right)
|
instr instanceof DivInstruction and result = div(left, right)
|
||||||
or
|
or
|
||||||
|
instr instanceof BitOrInstruction and result = bitOr(left, right)
|
||||||
|
or
|
||||||
|
instr instanceof BitAndInstruction and result = bitAnd(left, right)
|
||||||
|
or
|
||||||
|
instr instanceof BitXorInstruction and result = bitXor(left, right)
|
||||||
|
or
|
||||||
instr instanceof CompareEQInstruction and result = compareEQ(left, right)
|
instr instanceof CompareEQInstruction and result = compareEQ(left, right)
|
||||||
or
|
or
|
||||||
instr instanceof CompareNEInstruction and result = compareNE(left, right)
|
instr instanceof CompareNEInstruction and result = compareNE(left, right)
|
||||||
|
|||||||
Reference in New Issue
Block a user