diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2024-07-20 12:09:30 +0900 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2024-07-20 12:36:57 +0900 |
commit | 5893b1e297f3a333b30a9d32d0909b77a9fcd31c (patch) | |
tree | 430da220e26491e90a9751aa3a0afb8e9cee9567 /llvm/lib/CodeGen/TargetLoweringBase.cpp | |
parent | 168ecd706904d6ce221dc5107da92c56aea7c8e9 (diff) | |
download | llvm-5893b1e297f3a333b30a9d32d0909b77a9fcd31c.zip llvm-5893b1e297f3a333b30a9d32d0909b77a9fcd31c.tar.gz llvm-5893b1e297f3a333b30a9d32d0909b77a9fcd31c.tar.bz2 |
Reformat
Diffstat (limited to 'llvm/lib/CodeGen/TargetLoweringBase.cpp')
-rw-r--r-- | llvm/lib/CodeGen/TargetLoweringBase.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/TargetLoweringBase.cpp b/llvm/lib/CodeGen/TargetLoweringBase.cpp index f0fa6aa..914c67a 100644 --- a/llvm/lib/CodeGen/TargetLoweringBase.cpp +++ b/llvm/lib/CodeGen/TargetLoweringBase.cpp @@ -114,8 +114,7 @@ static bool darwinHasSinCos(const Triple &TT) { } void TargetLoweringBase::InitLibcalls(const Triple &TT) { -#define HANDLE_LIBCALL(code, name) \ - setLibcallName(RTLIB::code, name); +#define HANDLE_LIBCALL(code, name) setLibcallName(RTLIB::code, name); #include "llvm/IR/RuntimeLibcalls.def" #undef HANDLE_LIBCALL // Initialize calling conventions to their default. @@ -985,7 +984,8 @@ TargetLoweringBase::TargetLoweringBase(const TargetMachine &tm) : TM(tm) { MinCmpXchgSizeInBits = 0; SupportsUnalignedAtomics = false; - std::fill(std::begin(LibcallRoutineNames), std::end(LibcallRoutineNames), nullptr); + std::fill(std::begin(LibcallRoutineNames), std::end(LibcallRoutineNames), + nullptr); InitLibcalls(TM.getTargetTriple()); InitCmpLibcallCCs(CmpLibcallCCs); |