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 | fc05f402ea22e8a9ae465d209b65be7e857a89ff (patch) | |
tree | 4ba92fb0a672dde72a2d2a41323c31c4177f7e99 /lib/Target/X86/X86Subtarget.cpp | |
parent | 7169a2f9e87d3cb13666071b9af022fdb82218e4 (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43552 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86Subtarget.cpp')
-rw-r--r-- | lib/Target/X86/X86Subtarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86Subtarget.cpp b/lib/Target/X86/X86Subtarget.cpp index 51406c3927..2ddf9e2d2a 100644 --- a/lib/Target/X86/X86Subtarget.cpp +++ b/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. |