[all-commits] [llvm/llvm-project] 3e18fb: [libc] Switch functions to using global headers

michaelrj-google via All-commits all-commits at lists.llvm.org
Fri Nov 20 16:07:34 PST 2020


  Branch: refs/heads/master
  Home:   https://github.com/llvm/llvm-project
  Commit: 3e18fb33903979f75ed4842fc7ed515de3895137
      https://github.com/llvm/llvm-project/commit/3e18fb33903979f75ed4842fc7ed515de3895137
  Author: Michael Jones <michaelrj at google.com>
  Date:   2020-11-21 (Sat, 21 Nov 2020)

  Changed paths:
    M libc/src/math/cosf.cpp
    M libc/src/math/exp2f.cpp
    M libc/src/math/expf.cpp
    M libc/src/math/math_utils.h
    M libc/src/math/sincosf.cpp
    M libc/src/math/sinf.cpp
    M libc/src/string/strcat.h
    M libc/src/string/strcpy.h
    M libc/src/string/strlen.h
    M libc/test/src/math/FDimTest.h
    M libc/test/src/math/ILogbTest.h
    M libc/test/src/math/ceil_test.cpp
    M libc/test/src/math/ceilf_test.cpp
    M libc/test/src/math/ceill_test.cpp
    M libc/test/src/math/copysign_test.cpp
    M libc/test/src/math/copysignf_test.cpp
    M libc/test/src/math/copysignl_test.cpp
    M libc/test/src/math/cosf_test.cpp
    M libc/test/src/math/exp2f_test.cpp
    M libc/test/src/math/expf_test.cpp
    M libc/test/src/math/fabs_test.cpp
    M libc/test/src/math/fabsf_test.cpp
    M libc/test/src/math/fabsl_test.cpp
    M libc/test/src/math/fdim_test.cpp
    M libc/test/src/math/fdimf_test.cpp
    M libc/test/src/math/fdiml_test.cpp
    M libc/test/src/math/floor_test.cpp
    M libc/test/src/math/floorf_test.cpp
    M libc/test/src/math/floorl_test.cpp
    M libc/test/src/math/fmax_test.cpp
    M libc/test/src/math/fmaxf_test.cpp
    M libc/test/src/math/fmaxl_test.cpp
    M libc/test/src/math/fmin_test.cpp
    M libc/test/src/math/fminf_test.cpp
    M libc/test/src/math/fminl_test.cpp
    M libc/test/src/math/frexp_test.cpp
    M libc/test/src/math/frexpf_test.cpp
    M libc/test/src/math/frexpl_test.cpp
    M libc/test/src/math/hypotf_test.cpp
    M libc/test/src/math/ilogb_test.cpp
    M libc/test/src/math/ilogbf_test.cpp
    M libc/test/src/math/ilogbl_test.cpp
    M libc/test/src/math/logb_test.cpp
    M libc/test/src/math/logbf_test.cpp
    M libc/test/src/math/logbl_test.cpp
    M libc/test/src/math/modf_test.cpp
    M libc/test/src/math/modff_test.cpp
    M libc/test/src/math/modfl_test.cpp
    M libc/test/src/math/remquo_test.cpp
    M libc/test/src/math/remquof_test.cpp
    M libc/test/src/math/remquol_test.cpp
    M libc/test/src/math/round_test.cpp
    M libc/test/src/math/roundf_test.cpp
    M libc/test/src/math/roundl_test.cpp
    M libc/test/src/math/sincosf_test.cpp
    M libc/test/src/math/sinf_test.cpp
    M libc/test/src/math/sqrt_test.cpp
    M libc/test/src/math/sqrtf_test.cpp
    M libc/test/src/math/sqrtl_test.cpp
    M libc/test/src/math/trunc_test.cpp
    M libc/test/src/math/truncf_test.cpp
    M libc/test/src/math/truncl_test.cpp

  Log Message:
  -----------
  [libc] Switch functions to using global headers

This switches all of the files in src/string, src/math, and
test/src/math from using relative paths (e.g. `#include “include/string.h”`)
to global paths (e.g. `#include <string.h>`) to make bringing up those
functions on other platforms, such as fuchsia, easier.

Reviewed By: sivachandra

Differential Revision: https://reviews.llvm.org/D91394




More information about the All-commits mailing list