diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-04-28 02:50:42 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-05-16 16:00:22 +0200 |
commit | f3d300497fc7be87933b9623e03cc1ee7a99224f (patch) | |
tree | b328c55431ac9778c91562c609261478209dd17a | |
parent | 388ef988f8ff579d306882272f3e686067fffbd2 (diff) | |
download | ffmpeg-f3d300497fc7be87933b9623e03cc1ee7a99224f.tar.gz |
doc/developer: Add terse documentation of assumed C implementation defined behavior
Suggested-by: "Ronald S. Bultje" <rsbultje@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit b706ddbae3f4a11c58560b914807931556108b55)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | doc/developer.texi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/developer.texi b/doc/developer.texi index 4d3a7aef94..acb9dc83a2 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -131,6 +131,11 @@ designated struct initializers (@samp{struct s x = @{ .i = 17 @};}); @item compound literals (@samp{x = (struct s) @{ 17, 23 @};}). + +@item +Implementation defined behavior for signed integers is assumed to match the +expected behavior for two's complement. Non representable values in integer +casts are binary truncated. Shift right of signed values uses sign extension. @end itemize These features are supported by all compilers we care about, so we will not |