diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2007-10-31 11:52:06 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2007-10-31 11:52:06 +0000 |
commit | 063f1773001bbe8a86303ff31e1d41a0b8dee0ef (patch) | |
tree | ca36762a30317baff403381f6c6fff3ad6b5e312 /llvm/lib/Target/X86/X86Subtarget.cpp | |
parent | 3b4668a5d8c614b165648b080f6e48e9e87f9f54 (diff) | |
download | bcm5719-llvm-063f1773001bbe8a86303ff31e1d41a0b8dee0ef.tar.gz bcm5719-llvm-063f1773001bbe8a86303ff31e1d41a0b8dee0ef.zip |
Make ARM an X86 memcpy expansion more similar to each other.
Now both subtarget define getMaxInlineSizeThreshold and the expansion uses it.
This should not change generated code.
llvm-svn: 43552
Diffstat (limited to 'llvm/lib/Target/X86/X86Subtarget.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86Subtarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86Subtarget.cpp b/llvm/lib/Target/X86/X86Subtarget.cpp index 51406c39279..2ddf9e2d2a3 100644 --- a/llvm/lib/Target/X86/X86Subtarget.cpp +++ b/llvm/lib/Target/X86/X86Subtarget.cpp @@ -223,7 +223,7 @@ X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit) , HasX86_64(false) , stackAlignment(8) // FIXME: this is a known good value for Yonah. How about others? - , MinRepStrSizeThreshold(128) + , MaxInlineSizeThreshold(128) , Is64Bit(is64Bit) , HasLow4GUserAddress(true) , TargetType(isELF) { // Default to ELF unless otherwise specified. |