projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4641077
)
Fix compilation failure introduced in r241093.
author
Alex Lorenz
<arphaman@gmail.com>
Tue, 30 Jun 2015 18:32:02 +0000
(18:32 +0000)
committer
Alex Lorenz
<arphaman@gmail.com>
Tue, 30 Jun 2015 18:32:02 +0000
(18:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241096
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/MIRPrinter.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/MIRPrinter.cpp
b/lib/CodeGen/MIRPrinter.cpp
index 6b6675579ccc4ae9843740a1d3fbdbf4cf91a950..76cbe2994c95b1f61eb6578ae329c186eac90151 100644
(file)
--- a/
lib/CodeGen/MIRPrinter.cpp
+++ b/
lib/CodeGen/MIRPrinter.cpp
@@
-131,10
+131,10
@@
void MIRPrinter::convert(const Module &M, yaml::MachineBasicBlock &YamlMBB,
YamlMBB.Alignment = MBB.getAlignment();
YamlMBB.AddressTaken = MBB.hasAddressTaken();
YamlMBB.IsLandingPad = MBB.isLandingPad();
- for (const auto *MBB : MBB.successors()) {
+ for (const auto *
Succ
MBB : MBB.successors()) {
std::string Str;
raw_string_ostream StrOS(Str);
- MIPrinter(M, StrOS, RegisterMaskIds).printMBBReference(*MBB);
+ MIPrinter(M, StrOS, RegisterMaskIds).printMBBReference(*
Succ
MBB);
YamlMBB.Successors.push_back(StrOS.str());
}