diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-06-08 00:42:08 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-06-08 00:42:08 +0000 |
commit | 0271c5928e5320587f5994616b4b3cc9ea07f9a4 (patch) | |
tree | eca559439c7ad7dfe628b8c8f16a11a329666da0 | |
parent | 16372afeab0883cb8e0a0e2b7daa55d8c6a42a40 (diff) | |
download | llvm-0271c5928e5320587f5994616b4b3cc9ea07f9a4.zip llvm-0271c5928e5320587f5994616b4b3cc9ea07f9a4.tar.gz llvm-0271c5928e5320587f5994616b4b3cc9ea07f9a4.tar.bz2 |
Fix up a comment.
llvm-svn: 105591
-rw-r--r-- | llvm/lib/Target/ARM/NEONPreAllocPass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/NEONPreAllocPass.cpp b/llvm/lib/Target/ARM/NEONPreAllocPass.cpp index a725898..e0b472c 100644 --- a/llvm/lib/Target/ARM/NEONPreAllocPass.cpp +++ b/llvm/lib/Target/ARM/NEONPreAllocPass.cpp @@ -434,11 +434,11 @@ NEONPreAllocPass::FormsRegSequence(MachineInstr *MI, // FIXME: Update the uses of EXTRACT_SUBREG from REG_SEQUENCE is // currently required for correctness. e.g. - // %reg1041;<def> = REG_SEQUENCE %reg1040<kill>, 5, %reg1035<kill>, 6 + // %reg1041<def> = REG_SEQUENCE %reg1040<kill>, 5, %reg1035<kill>, 6 // %reg1042<def> = EXTRACT_SUBREG %reg1041, 6 // %reg1043<def> = EXTRACT_SUBREG %reg1041, 5 // VST1q16 %reg1025<kill>, 0, %reg1043<kill>, %reg1042<kill>, - // reg1025 and reg1043 should be replaced with reg1041:6 and reg1041:5 + // reg1042 and reg1043 should be replaced with reg1041:6 and reg1041:5 // respectively. // We need to change how we model uses of REG_SEQUENCE. for (unsigned R = 0; R < NumRegs; ++R) { |