diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2005-08-27 19:09:48 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2005-08-27 19:09:48 +0000 |
| commit | aa7fbca2858247b58d80a0dbf0af0da8fa556708 (patch) | |
| tree | 27313e924d6bd1a69fb42c614085a4d147b88eed /llvm | |
| parent | 85d93a3ec90bbcb813db55569f96b5282868f8b1 (diff) | |
| download | bcm5719-llvm-aa7fbca2858247b58d80a0dbf0af0da8fa556708.tar.gz bcm5719-llvm-aa7fbca2858247b58d80a0dbf0af0da8fa556708.zip | |
Adjust to member variable name change.
llvm-svn: 23119
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelPattern.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86ISelPattern.cpp b/llvm/lib/Target/X86/X86ISelPattern.cpp index a874404f7eb..48e25422134 100644 --- a/llvm/lib/Target/X86/X86ISelPattern.cpp +++ b/llvm/lib/Target/X86/X86ISelPattern.cpp @@ -232,7 +232,7 @@ namespace { maxStoresPerMemSet = 8; // For %llvm.memset -> sequence of stores maxStoresPerMemCpy = 8; // For %llvm.memcpy -> sequence of stores maxStoresPerMemMove = 8; // For %llvm.memmove -> sequence of stores - allowUnalignedStores = true; // x86 supports it! + allowUnalignedMemoryAccesses = true; // x86 supports it! } // Return the number of bytes that a function should pop when it returns (in |

