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:
04cc49b
)
Give me PHI's space back
author
Chris Lattner
<sabre@nondot.org>
Tue, 6 Nov 2001 08:33:46 +0000
(08:33 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 6 Nov 2001 08:33:46 +0000
(08:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1150
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/VMCore/AsmWriter.cpp
patch
|
blob
|
history
diff --git
a/lib/VMCore/AsmWriter.cpp
b/lib/VMCore/AsmWriter.cpp
index c867e354ed05e3deb9bfbc693471d82afaf537ce..ba4db9ed410f9f5d517a594c40e0c7585736a91b 100644
(file)
--- a/
lib/VMCore/AsmWriter.cpp
+++ b/
lib/VMCore/AsmWriter.cpp
@@
-518,6
+518,7
@@
void AssemblyWriter::printInstruction(const Instruction *I) {
} else if (isa<PHINode>(I)) {
Out << " ";
printType(I->getType());
+ Out << " ";
for (unsigned op = 0, Eop = I->getNumOperands(); op < Eop; op += 2) {
if (op) Out << ", ";