mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
Merging r143712:
------------------------------------------------------------------------ r143712 | efriedma | 2011-11-04 10:29:35 -0700 (Fri, 04 Nov 2011) | 3 lines Add missing argument for atomic instructions in c++ backend. PR11268, part 2. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_30@143999 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
39be04a27e
commit
21a7e1ac70
@ -1492,7 +1492,7 @@ void CppWriter::printInstruction(const Instruction *I,
|
||||
StringRef CrossThread = ConvertAtomicSynchScope(fi->getSynchScope());
|
||||
Out << "FenceInst* " << iName
|
||||
<< " = new FenceInst(mod->getContext(), "
|
||||
<< Ordering << ", " << CrossThread
|
||||
<< Ordering << ", " << CrossThread << ", " << bbname
|
||||
<< ");";
|
||||
break;
|
||||
}
|
||||
@ -1503,7 +1503,7 @@ void CppWriter::printInstruction(const Instruction *I,
|
||||
Out << "AtomicCmpXchgInst* " << iName
|
||||
<< " = new AtomicCmpXchgInst("
|
||||
<< opNames[0] << ", " << opNames[1] << ", " << opNames[2] << ", "
|
||||
<< Ordering << ", " << CrossThread
|
||||
<< Ordering << ", " << CrossThread << ", " << bbname
|
||||
<< ");";
|
||||
nl(Out) << iName << "->setName(\"";
|
||||
printEscapedString(cxi->getName());
|
||||
@ -1533,7 +1533,7 @@ void CppWriter::printInstruction(const Instruction *I,
|
||||
<< " = new AtomicRMWInst("
|
||||
<< Operation << ", "
|
||||
<< opNames[0] << ", " << opNames[1] << ", "
|
||||
<< Ordering << ", " << CrossThread
|
||||
<< Ordering << ", " << CrossThread << ", " << bbname
|
||||
<< ");";
|
||||
nl(Out) << iName << "->setName(\"";
|
||||
printEscapedString(rmwi->getName());
|
||||
|
Loading…
x
Reference in New Issue
Block a user