summaryrefslogtreecommitdiff
path: root/utils/TableGen/AsmWriterEmitter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-26 23:47:10 +0000
committerChris Lattner <sabre@nondot.org>2006-09-26 23:47:10 +0000
commit16f046a6cee08981084dc4339ceaf76b2e291b4c (patch)
tree1ea2080b410254163550a854dea68155eb94a8a9 /utils/TableGen/AsmWriterEmitter.cpp
parent1bf6361dfde21fcc0f433c8cf53d5c366225ee3f (diff)
downloadllvm-16f046a6cee08981084dc4339ceaf76b2e291b4c.tar.gz
llvm-16f046a6cee08981084dc4339ceaf76b2e291b4c.tar.bz2
llvm-16f046a6cee08981084dc4339ceaf76b2e291b4c.tar.xz
Actually, name the method PrintSpecial to match other stuff in AsmPrinter.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30618 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/AsmWriterEmitter.cpp')
-rw-r--r--utils/TableGen/AsmWriterEmitter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/TableGen/AsmWriterEmitter.cpp b/utils/TableGen/AsmWriterEmitter.cpp
index a67ee531a6..93ac6b9e14 100644
--- a/utils/TableGen/AsmWriterEmitter.cpp
+++ b/utils/TableGen/AsmWriterEmitter.cpp
@@ -175,7 +175,7 @@ AsmWriterInst::AsmWriterInst(const CodeGenInstruction &CGI, unsigned Variant) {
// 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 @@ AsmWriterInst::AsmWriterInst(const CodeGenInstruction &CGI, unsigned Variant) {
"' 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);