[llvm-commits] CVS: llvm/utils/TableGen/AsmWriterEmitter.cpp
Chris Lattner
sabre at nondot.org
Tue Sep 26 16:47:25 PDT 2006
Changes in directory llvm/utils/TableGen:
AsmWriterEmitter.cpp updated: 1.42 -> 1.43
---
Log message:
Actually, name the method PrintSpecial to match other stuff in AsmPrinter.h
---
Diffs of the changes: (+3 -3)
AsmWriterEmitter.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/utils/TableGen/AsmWriterEmitter.cpp
diff -u llvm/utils/TableGen/AsmWriterEmitter.cpp:1.42 llvm/utils/TableGen/AsmWriterEmitter.cpp:1.43
--- llvm/utils/TableGen/AsmWriterEmitter.cpp:1.42 Tue Sep 26 18:45:08 2006
+++ llvm/utils/TableGen/AsmWriterEmitter.cpp Tue Sep 26 18:47:10 2006
@@ -175,7 +175,7 @@
// Modifier - Support ${foo:modifier} syntax, where "modifier" is passed
// into printOperand. Also support ${:feature}, which is passed into
- // printSpecial.
+ // PrintSpecial.
std::string Modifier;
// In order to avoid starting the next string at the terminating curly
@@ -212,8 +212,8 @@
"' asm string, maybe you want $$?";
if (VarName.empty()) {
- // Just a modifier, pass this into printSpecial.
- Operands.push_back(AsmWriterOperand("printSpecial", ~0U, Modifier));
+ // Just a modifier, pass this into PrintSpecial.
+ Operands.push_back(AsmWriterOperand("PrintSpecial", ~0U, Modifier));
} else {
// Otherwise, normal operand.
unsigned OpNo = CGI.getOperandNamed(VarName);
More information about the llvm-commits
mailing list