diff --git a/README.md b/README.md index ca997c4375d517e17641467a5505134ec00334d1..1b1f1d38698092888d10d9ca72a3729f0d933476 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,34 @@ test +``` g++ -o test -std=c++17 func_pattern.cxx -I. +``` +Running the test: +``` +$ ./test +2 +77 +79 +12166 +158 +8.21963e-05 +12166 +1 +6.75623e-09 + +These should be the same as the first 3 variables above. +2 +77 +79 + +XBD +2 +158 +12166 +``` + +Looking at assembly: +``` g++ -S -o test.asm -std=c++17 func_pattern.cxx -I. -O3 +```