mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
[ms-inline-asm] Make sure the AsmRewrite list is sorted in lexical order.
rdar://13202662 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175021 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e68542e67e
commit
b195398192
@ -4029,6 +4029,10 @@ bool AsmParser::ParseDirectiveMSAlign(SMLoc IDLoc, ParseStatementInfo &Info) {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool AsmStringSort (AsmRewrite A, AsmRewrite B) {
|
||||
return A.Loc.getPointer() < B.Loc.getPointer();
|
||||
}
|
||||
|
||||
bool AsmParser::ParseMSInlineAsm(void *AsmLoc, std::string &AsmString,
|
||||
unsigned &NumOutputs, unsigned &NumInputs,
|
||||
SmallVectorImpl<std::pair<void *, bool> > &OpDecls,
|
||||
@ -4153,6 +4157,7 @@ bool AsmParser::ParseMSInlineAsm(void *AsmLoc, std::string &AsmString,
|
||||
AsmRewriteKind PrevKind = AOK_Imm;
|
||||
raw_string_ostream OS(AsmStringIR);
|
||||
const char *Start = SrcMgr.getMemoryBuffer(0)->getBufferStart();
|
||||
std::sort (AsmStrRewrites.begin(), AsmStrRewrites.end(), AsmStringSort);
|
||||
for (SmallVectorImpl<struct AsmRewrite>::iterator
|
||||
I = AsmStrRewrites.begin(), E = AsmStrRewrites.end(); I != E; ++I) {
|
||||
const char *Loc = (*I).Loc.getPointer();
|
||||
|
Loading…
Reference in New Issue
Block a user