diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-05-21 14:59:50 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-05-21 14:59:50 +0530 |
commit | fef94eab0bd308d5059a2588c753bf9a4926845d (patch) | |
tree | 1289df55060cab3cd7e9e0de62692433c90c9f36 /benchtests/Makefile | |
parent | e39adf43c7d1979884dd304ed1250baf1f78fadc (diff) | |
download | glibc-fef94eab0bd308d5059a2588c753bf9a4926845d.zip glibc-fef94eab0bd308d5059a2588c753bf9a4926845d.tar.gz glibc-fef94eab0bd308d5059a2588c753bf9a4926845d.tar.bz2 |
Add a README for benchtests
Move instructions from the Makefile here and expand on them.
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r-- | benchtests/Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index 8618390..913fe4d 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -18,26 +18,6 @@ # Makefile for benchmark tests. The only useful target here is `bench`. -# Adding a new function `foo`: -# --------------------------- - -# - Append the function name to the bench variable - -# - Define foo-ARGLIST as a colon separated list of types of the input -# arguments. Use `void` if function does not take any inputs. Put in quotes -# if the input argument is a pointer, e.g.: - -# malloc-ARGLIST: "void *" - -# - Define foo-RET as the type the function returns. Skip if the function -# returns void. One could even skip foo-ARGLIST if the function does not -# take any inputs AND the function returns void. - - -# - Make a file called `foo-inputs` with one input value per line, an input -# being a comma separated list of arguments to be passed into the function. -# See pow-inputs for an example. - subdir := benchtests bench := exp pow rint sin cos tan atan modf |