File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -120,10 +120,10 @@ jobs:
120
120
# ---- build normal and examples ----
121
121
- name : Run a normal build
122
122
run : cargo build --verbose
123
- - name : Run libafl_qemu usermode tests
124
- run : cd libafl_qemu && cargo test
125
- - name : Run libafl_qemu systemmode tests
126
- run : cd libafl_qemu && cargo test --no-default-features --features x86_64,systemmode
123
+ # - name: Run libafl_qemu usermode tests
124
+ # run: cd libafl_qemu && cargo test
125
+ # - name: Run libafl_qemu systemmode tests
126
+ # run: cd libafl_qemu && cargo test --no-default-features --features x86_64,systemmode
127
127
- name : Build examples
128
128
run : cargo build --examples --verbose
129
129
Original file line number Diff line number Diff line change @@ -327,7 +327,7 @@ class DDGInstrModulePass : public PassInfoMixin<DDGInstrModulePass> {
327
327
// GEP)
328
328
329
329
BasicBlock &EntryBB = F.getEntryBlock ();
330
- Instruction *FirstInst = EntryBB.getFirstNonPHIOrDbg ();
330
+ Instruction *FirstInst = &* EntryBB.getFirstNonPHIOrDbg ();
331
331
332
332
// First we add the function params to track the dataflow
333
333
for (Function::arg_iterator arg_it = F.arg_begin (); arg_it != F.arg_end ();
You can’t perform that action at this time.
0 commit comments