Advertisement
Guest User

Untitled

a guest
May 27th, 2019
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. [maximilian@localhost std::copy]$ clang++ -O1 copy.cpp
  2. [maximilian@localhost std::copy]$ time ./a.out
  3.  
  4. real 1m23.239s
  5. user 1m22.958s
  6. sys 0m0.019s
  7.  
  8. [maximilian@localhost std::copy]$ uasm -elf copy.asm
  9. UASM v2.47, Nov 17 2018, Masm-compatible assembler.
  10. Portions Copyright (c) 1992-2002 Sybase, Inc. All Rights Reserved.
  11. Source code is available under the Sybase Open Watcom Public License.
  12.  
  13. copy.asm: 71 lines, 3 passes, 1774 ms, 0 warnings, 0 errors
  14. [maximilian@localhost std::copy]$ ld copy.o
  15. [maximilian@localhost std::copy]$ time ./a.out
  16.  
  17. real 0m19.613s
  18. user 0m19.529s
  19. sys 0m0.011s
  20.  
  21. [maximilian@localhost std::copy]$ clang++ copy.cpp
  22. [maximilian@localhost std::copy]$ time ./a.out
  23.  
  24. real 1m24.771s
  25. user 1m24.523s
  26. sys 0m0.004s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement