diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-11-05 23:55:10 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-11-05 23:55:10 +0100 |
commit | df4cac2c8038d8aa061230826d79d3ead1fb1d3b (patch) | |
tree | ae463c25c58af31cd08bf779e770275d5fbf0ee2 | |
parent | m + benchmark-flags (diff) | |
download | libkeccak-df4cac2c8038d8aa061230826d79d3ead1fb1d3b.tar.gz libkeccak-df4cac2c8038d8aa061230826d79d3ead1fb1d3b.tar.bz2 libkeccak-df4cac2c8038d8aa061230826d79d3ead1fb1d3b.tar.xz |
derp
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rwxr-xr-x | src/benchmark-flags | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/benchmark-flags b/src/benchmark-flags index 4a9a31a..87d056a 100755 --- a/src/benchmark-flags +++ b/src/benchmark-flags @@ -27,9 +27,8 @@ list_test_flags () cat <<EOF -fdata-sections -fcrossjumping -fexpensive-optimizations -ffunction-sections -fkeep-inline-functions -fomit-frame-pointer -freorder-blocks-and-partition --ftree-ter -falign-functions=0 -fira-algorithm=priority -fira-algorithm=CB --fira-region=all -fira-region=mixed -fira-region=one -fmerge-all-constants --fmerge-constants -fprofile-generate +-ftree-ter -falign-functions=0 -fmerge-all-constants -fmerge-constants +-fprofile-generate EOF } @@ -49,7 +48,7 @@ while true; do if [ "${test_flag}" = "" ]; then test_flag=zzz fi - echo "$(bin/benchmark || echo error) ${test_flags}" >&3 + echo "$(bin/benchmark || echo error) ${test_flag}" >&3 done done |