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:
d00eaaa
)
Remove a nasty little semi-colon someone introduced which
author
Vikram S. Adve
<vadve@cs.uiuc.edu>
Wed, 6 Nov 2002 00:34:26 +0000
(
00:34
+0000)
committer
Vikram S. Adve
<vadve@cs.uiuc.edu>
Wed, 6 Nov 2002 00:34:26 +0000
(
00:34
+0000)
prevented any machine instrs from being printed!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4557
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/SparcV9/SparcV9AsmPrinter.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/SparcV9/SparcV9AsmPrinter.cpp
b/lib/Target/SparcV9/SparcV9AsmPrinter.cpp
index 0357c597039cfc31196f6dee2947a9fbcd1a743a..80e0f642718d7b12577b9b98ab652a1d9e16d3cf 100644
(file)
--- a/
lib/Target/SparcV9/SparcV9AsmPrinter.cpp
+++ b/
lib/Target/SparcV9/SparcV9AsmPrinter.cpp
@@
-443,7
+443,7
@@
SparcFunctionAsmPrinter::emitMachineInst(const MachineInstr *MI)
{
unsigned Opcode = MI->getOpCode();
- if (Target.getInstrInfo().isDummyPhiInstr(Opcode))
;
+ if (Target.getInstrInfo().isDummyPhiInstr(Opcode))
return; // IGNORE PHI NODES
toAsm << "\t" << Target.getInstrInfo().getName(Opcode) << "\t";