diff options
Diffstat (limited to 'lib/compiler/test/compile_SUITE_data')
-rw-r--r-- | lib/compiler/test/compile_SUITE_data/small_float.erl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/compiler/test/compile_SUITE_data/small_float.erl b/lib/compiler/test/compile_SUITE_data/small_float.erl new file mode 100644 index 0000000000..5cbb5aef83 --- /dev/null +++ b/lib/compiler/test/compile_SUITE_data/small_float.erl @@ -0,0 +1,5 @@ +-module(small_float). +-export([f/1]). + +f(F) when is_float(F) -> + F / 2. |