forked from OSchip/llvm-project
[libc] Fix automemcpy test by adding memmove configuration
This commit is contained in:
parent
14aaaa1236
commit
b840f30d1e
|
@ -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 {
|
||||
|
@ -211,6 +212,10 @@ llvm::ArrayRef<BzeroConfiguration> getBzeroConfigurations() {
|
|||
};
|
||||
return llvm::makeArrayRef(kConfigurations);
|
||||
}
|
||||
|
||||
llvm::ArrayRef<MemmoveConfiguration> getMemmoveConfigurations() {
|
||||
return {};
|
||||
}
|
||||
// Functions : 6
|
||||
)");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue