C++: Autoformat.

This commit is contained in:
Mathias Vorreiter Pedersen
2022-08-26 09:06:38 +01:00
parent 9f17bd0d89
commit e13ae70eeb

View File

@@ -1714,13 +1714,9 @@ class CallSideEffectInstruction extends SideEffectInstruction {
CallSideEffectInstruction() { this.getOpcode() instanceof Opcode::CallSideEffect }
/** Gets the operand for the value that will be read by this instruction */
final SideEffectOperand getSideEffectOperand() {
result = this.getAnOperand()
}
final SideEffectOperand getSideEffectOperand() { result = this.getAnOperand() }
final Instruction getSideEffect() {
result = this.getAnOperand().getDef()
}
final Instruction getSideEffect() { result = this.getAnOperand().getDef() }
}
/**
@@ -1732,15 +1728,11 @@ class CallSideEffectInstruction extends SideEffectInstruction {
*/
class CallReadSideEffectInstruction extends SideEffectInstruction {
CallReadSideEffectInstruction() { this.getOpcode() instanceof Opcode::CallReadSideEffect }
/** Gets the operand for the value that will be read by this instruction */
final SideEffectOperand getSideEffectOperand() {
result = this.getAnOperand()
}
final Instruction getSideEffect() {
result = this.getAnOperand().getDef()
}
/** Gets the operand for the value that will be read by this instruction */
final SideEffectOperand getSideEffectOperand() { result = this.getAnOperand() }
final Instruction getSideEffect() { result = this.getAnOperand().getDef() }
}
/**