Skip to content

Instantly share code, notes, and snippets.

@ramntry
Created July 13, 2018 00:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramntry/347c1f9abc498f4fb84f49e0fd969585 to your computer and use it in GitHub Desktop.
Save ramntry/347c1f9abc498f4fb84f49e0fd969585 to your computer and use it in GitHub Desktop.
  // |  Expression   |     ConstantRange      |       KnownBits       |
  // |---------------|------------------------|-----------------------|
  // | i8 4 * X      | [L: 0, U: 253)         | XXXX XX00             |
  // |               |   => Min: 0, Max: 252  |   => Min: 0, Max: 252 |
  // |               |                        |                       |
  // | i8 4 * X + 5  | [L: 5, U: 2) (wrapped) | YYYY YY01             |
  // |         (101) |   => Min: 0, Max: 255  |   => Min: 1, Max: 253 |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment