Update reproducing.md (#6464)

Some bugs (specially ones related to integer and pointer overflows) are architecture-specific (32/64 bit builds). Add a hint about it.
This commit is contained in:
zoulasc 2021-09-17 07:53:41 +03:00 committed by GitHub
parent 81f08b204e
commit 708f78b2dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -82,8 +82,11 @@ The `sanitizer` used in the report is the value in the
* **memory** for MemorySanitizer.
* **undefined** for UndefinedBehaviorSanitizer.
**Note**: The `architecture` argument is only necessary if you want to specify
**Notes**:
* The `architecture` argument is only necessary if you want to specify
`i386` configuration.
* Some bugs (specially ones related to pointer and integer overflows) are reproducible only in 32 bit mode or only in 64 bit mode.
If you can't reproduce a particular bug building for x86_64, try building for i386.
## Reproducing bugs