mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 03:25:23 +00:00
Prefer copy init over direct init. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239327 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -2143,7 +2143,7 @@ void AssemblyWriter::printModule(const Module *M) {
|
|||||||
Out << '\n';
|
Out << '\n';
|
||||||
|
|
||||||
// Split the string into lines, to make it easier to read the .ll file.
|
// Split the string into lines, to make it easier to read the .ll file.
|
||||||
StringRef Asm(M->getModuleInlineAsm());
|
StringRef Asm = M->getModuleInlineAsm();
|
||||||
do {
|
do {
|
||||||
StringRef Front;
|
StringRef Front;
|
||||||
std::tie(Front, Asm) = Asm.split('\n');
|
std::tie(Front, Asm) = Asm.split('\n');
|
||||||
|
Reference in New Issue
Block a user