Yonghong Song d2b4a675a8 [BPF] Fix a bug in BPFAdjustOpt pass for icmp transformation
When checking a bcc issue related to bcc tool inject.py,
I found a bug in BPFAdjustOpt pass for icmp transformation,
caused by typo's. For the following condition:
  Cond2Op != ICmpInst::ICMP_SLT && Cond1Op != ICmpInst::ICMP_SLE
it should be
  Cond2Op != ICmpInst::ICMP_SLT && Cond2Op != ICmpInst::ICMP_SLE

This patch fixed the problem and a test case is added.

Differential Revision: https://reviews.llvm.org/D121883
2022-03-17 09:25:18 -07:00
..
2022-02-11 10:39:29 +01:00
2022-02-09 11:09:17 +01:00
2022-03-10 10:00:29 +01:00
2022-03-16 08:43:00 +01:00
2022-03-16 08:43:00 +01:00
2021-11-04 17:01:36 -07:00
2021-11-04 17:01:36 -07:00