Skip to content

Commit

Permalink
[libc] Fix automemcpy test by adding memmove configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
gchatelet committed Feb 2, 2022
1 parent 14aaaa1 commit b840f30
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libc/benchmarks/automemcpy/unittests/CodeGenTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ TEST(Automemcpy, Codegen) {
using llvm::libc_benchmarks::BzeroConfiguration;
using llvm::libc_benchmarks::MemcmpOrBcmpConfiguration;
using llvm::libc_benchmarks::MemcpyConfiguration;
using llvm::libc_benchmarks::MemmoveConfiguration;
using llvm::libc_benchmarks::MemsetConfiguration;
namespace __llvm_libc {
Expand Down Expand Up @@ -211,6 +212,10 @@ llvm::ArrayRef<BzeroConfiguration> getBzeroConfigurations() {
};
return llvm::makeArrayRef(kConfigurations);
}
llvm::ArrayRef<MemmoveConfiguration> getMemmoveConfigurations() {
return {};
}
// Functions : 6
)");
}
Expand Down

0 comments on commit b840f30

Please sign in to comment.