diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-12-06 06:16:21 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-12-06 06:16:21 +0000 |
| commit | 3749c9cae41d2e682f67a41b07e0c50b46dbb000 (patch) | |
| tree | 5edeefa650388eb317fc3d8edb9e081aa48a7716 /include | |
| parent | a6b1ffcfaaaf698386243a36992193a3c2c86766 (diff) | |
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')
| -rw-r--r-- | include/llvm/Assembly/Writer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h index 9ddb45e1cd..45c9513c54 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 |
