mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Change AsmName's type from StringRef to std::string. AsmName was pointing to a temporary string object that was destroyed. This is undefined behavior and MSVC didn't like it.
This fixes over 300+ failing tests on MSVC. Credit for this fix goes to chapuni. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134064 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0fb7dcd48f
commit
2e10b08744
@ -467,7 +467,7 @@ emitRegisterNameString(raw_ostream &O, StringRef AltName,
|
||||
for (unsigned i = 0, e = Registers.size(); i != e; ++i) {
|
||||
const CodeGenRegister &Reg = *Registers[i];
|
||||
|
||||
StringRef AsmName;
|
||||
std::string AsmName;
|
||||
// "NoRegAltName" is special. We don't need to do a lookup for that,
|
||||
// as it's just a reference to the default register name.
|
||||
if (AltName == "" || AltName == "NoRegAltName") {
|
||||
|
Loading…
x
Reference in New Issue
Block a user