mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-26 12:46:00 +00:00
[TableGen][X86] Mark a couple global tables as const. NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304099 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3d21edd814
commit
d60f6d272b
@ -44,11 +44,11 @@ struct ManualMapEntry {
|
||||
class IsMatch;
|
||||
|
||||
// List of instructions requiring explicitly aligned memory.
|
||||
const char *ExplicitAlign[] = {"MOVDQA", "MOVAPS", "MOVAPD", "MOVNTPS",
|
||||
const char *const ExplicitAlign[] = {"MOVDQA", "MOVAPS", "MOVAPD", "MOVNTPS",
|
||||
"MOVNTPD", "MOVNTDQ", "MOVNTDQA"};
|
||||
|
||||
// List of instructions NOT requiring explicit memory alignment.
|
||||
const char *ExplicitUnalign[] = {"MOVDQU", "MOVUPS", "MOVUPD"};
|
||||
const char *const ExplicitUnalign[] = {"MOVDQU", "MOVUPS", "MOVUPD"};
|
||||
|
||||
// For manually mapping instructions that do not match by their encoding.
|
||||
const ManualMapEntry ManualMapSet[] = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user