Fix comments in response to jlebar's comments in D27872.
Details
Diff Detail
- Build Status
Buildable 3268 Build 3268: arc lint + arc unit
Event Timeline
llvm/include/llvm/ADT/APFloat.h | ||
---|---|---|
1054 | s/one/a/ | |
1055 | Nit, this indentation seems noncanonical. | |
1064 | Perhaps "Add two APFloats, rounding ties to the nearest even.", so we repeat less of what's in the code? | |
1065 | Nit, I'm not sure we need the asterisks around "No". | |
llvm/lib/Support/APFloat.cpp | ||
69 | s/It consists/They consist/ to match "number*s*" earlier. | |
70 | Well, that second criterion is only true for non-denormals, right? | |
72 | adjacent to | |
82 | (Here "it's" is fine, because the antecedent is "semantics", used in a singular sense, rather than "numbers".) | |
4243 | Hm, in order for this to be true for denormals, they must also have the same sign, right? |
llvm/lib/Support/APFloat.cpp | ||
---|---|---|
73 | You could clarify that there are 2 11-bit exponents. |
lgtm!
llvm/lib/Support/APFloat.cpp | ||
---|---|---|
70 | I think "if normal" or "if not denormal" is what you want. "if normalized" implies that you may be able to take *any* Hi/Lo and "normalize" them so that this criterion is true. But that's not true for some values (namely, denormals). Unless we use "normalized" elsewhere in apfloat, in which case, whatever. :) | |
4340 | Again, perhaps "normal" or "non-denormal". |
s/normalized/normal/ in the commit. I committed before uploading it to Phab. :P
llvm/lib/Support/APFloat.cpp | ||
---|---|---|
70 | Changed to normal as APFloat uses it in other places too. FWIW, https://en.wikipedia.org/wiki/Denormal_number aliases these two terms. |
s/one/a/