This change brings the synchronization of raised exceptions in line with
"Intel 64 and IA-32 Architectures Software Developer's Manual, Vol 1"
sections 8.6 and 8.7.
Details
Details
- Reviewers
sivachandra
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
libc/utils/FPUtil/x86_64/FEnv.h | ||
---|---|---|
199 | Add a comment here explaining that this functions returns a bit map of all enabled exceptions. | |
202 | We usually try to be formal in multi-line comments. So, I would suggest a wording like this: // The exceptions are enabled if the bit is zero (unmasked), // so that is why the negation before the & operation. |
Add a comment here explaining that this functions returns a bit map of all enabled exceptions.