MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / IsUnconditional

Method IsUnconditional

Bcore/src/main/cpp/dex/dex_instruction.h:550–552  ·  view source on GitHub ↗

Returns true if this instruction is a unconditional branch.

Source from the content-addressed store, hash-verified

548
549 // Returns true if this instruction is a unconditional branch.
550 bool IsUnconditional() const {
551 return (kInstructionDescriptors[Opcode()].flags & kUnconditional) != 0;
552 }
553
554 // Returns the branch offset if this instruction is a branch.
555 int32_t GetTargetOffset() const;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected