Details
Details
- Reviewers
kcc samsonov eugenis - Commits
- rG7c682e05ba84: Merging r263199: --------------------------------------------------------------…
rGac4bd45f021c: [Compiler-rt] Fix ioctl codes for MIPS in sanitizer_ioctl_test
rCRT263199: [Compiler-rt] Fix ioctl codes for MIPS in sanitizer_ioctl_test
rL263199: [Compiler-rt] Fix ioctl codes for MIPS in sanitizer_ioctl_test
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
lib/sanitizer_common/tests/sanitizer_ioctl_test.cc | ||
---|---|---|
81 | Try to avoid #if where possible. E.g. can you make it unsigned int desc_value = SANITIZER_MIPS ? 0x4004ae98U : 0x8004ae98U; bool res = ioctl_decode(write_desc, &desc); ? |
Try to avoid #if where possible. E.g. can you make it
?