We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33364a8 commit d030f0bCopy full SHA for d030f0b
cpp/ql/lib/semmle/code/cpp/ir/implementation/raw/internal/TranslatedExpr.qll
@@ -1276,6 +1276,9 @@ class TranslatedUnaryExpr extends TranslatedSingleInstructionExpr {
1276
expr instanceof UnaryPlusExpr and result instanceof Opcode::CopyValue
1277
or
1278
expr instanceof UnaryMinusExpr and result instanceof Opcode::Negate
1279
+ or
1280
+ // TODO: Use a new opcode to represent "awaiting the value"
1281
+ expr instanceof CoAwaitExpr and result instanceof Opcode::CopyValue
1282
}
1283
1284
private TranslatedExpr getOperand() {
0 commit comments