Guest User

Untitled

a guest
Nov 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <stdint.h>
  2.  
  3. double D(int64_t A) { return (double)A; }
  4. float F(int64_t A) { return (float)A; }
  5. long double X(int64_t A) { return (long double)A; }
  6.  
  7. int main() {
  8. volatile *int64_t E = (int64_t*)&E;
  9. (void)D(*E);
  10. (void)F(*E);
  11. (void)X(*E);
  12.  
  13. return (int)((*E) & 0xFF);
  14. }
  15.  
  16. // gcc -S this please and pastebin the x86_64 assembly
Add Comment
Please, Sign In to add comment