pmor

Results 22 comments of pmor

Thanks for the reply. Hm, per C90 the width of `int` it bits is at least 16, and the value of the right operand (15) is not negative, nor greater...

+1 It will be great to drive a command like this: -device "iPhone (Retina 4-inch)".

4. Some C compilers diagnose it differently than GCC/LLVM. Examples: ``` xxx: error: cannot convert preprocessing token into valid token Tendra: Error: Can't convert '0xe+1' to a number. ICC: error:...

@katef I don't know much about C90. However, I do know something about C11. In C11 `void` _is_ an object type. The `extern void x;` doesn't violate any syntax rule...

FYI: 1. The C standard requires "on" to be capitalized: ``` #pragma STDC FENV_ACCESS on-off-switch on-off-switch: one of ON OFF DEFAULT ``` 2. GCC ignores `#pragma STDC FENV_ACCESS`: > warning:...

@smithp35 Thanks for the feedback. Yes, you understood correctly (I'm not sure which one is grammatically correct: "documented requirement" or "document requirement" or "requirement imposed by this document"). P.S. I'm...

@hvdijk Per C90 the `(2 / 0)` is not evaluated. ANSI/IS0 9899-l 990 (revision and redesignation of ANSI X3.1 59-I 989), 6.3.14 Logical OR operator, Semantics (emphasis added): > If...