diff --git a/src/experiments/l4-sys/InstructionFilter.hpp b/src/experiments/l4-sys/InstructionFilter.hpp index fd8a20ea..79c1bdbe 100644 --- a/src/experiments/l4-sys/InstructionFilter.hpp +++ b/src/experiments/l4-sys/InstructionFilter.hpp @@ -47,7 +47,7 @@ public: * \c false otherwise */ bool isValidInstr(address_t ip, char const *instr) const - { return (beginAddress < ip && ip < endAddress); } + { return (beginAddress <= ip && ip <= endAddress); } private: address_t beginAddress; //