aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-12-06 06:16:21 +0000
committerChris Lattner <sabre@nondot.org>2006-12-06 06:16:21 +0000
commit3749c9cae41d2e682f67a41b07e0c50b46dbb000 (patch)
tree5edeefa650388eb317fc3d8edb9e081aa48a7716 /include/llvm/Assembly
parenta6b1ffcfaaaf698386243a36992193a3c2c86766 (diff)
downloadexternal_llvm-3749c9cae41d2e682f67a41b07e0c50b46dbb000.zip
external_llvm-3749c9cae41d2e682f67a41b07e0c50b46dbb000.tar.gz
external_llvm-3749c9cae41d2e682f67a41b07e0c50b46dbb000.tar.bz2
Remove the 'printname' argument to WriteAsOperand. It is always true, and
passing false would make the asmprinter fail anyway. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32264 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/Writer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index 9ddb45e..45c9513 100644
--- a/include/llvm/Assembly/Writer.h
+++ b/include/llvm/Assembly/Writer.h
@@ -38,7 +38,7 @@ std::ostream &WriteTypeSymbolic(std::ostream &, const Type *, const Module *M);
// pointer is printed symbolically.
//
std::ostream &WriteAsOperand(std::ostream &, const Value *, bool PrintTy = true,
- bool PrintName = true, const Module *Context = 0);
+ const Module *Context = 0);
} // End llvm namespace