summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly/Writer.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-28 21:05:51 +0000
committerChris Lattner <sabre@nondot.org>2009-02-28 21:05:51 +0000
commitc287137ce7455c63be0075e0d5aba0bab4f125ea (patch)
treedac71886746d2c3f34cd1ca2ebadfbeb1b71865d /include/llvm/Assembly/Writer.h
parent534361e7e17b34c6ac043a2c8bea626a5e9f1657 (diff)
downloadllvm-c287137ce7455c63be0075e0d5aba0bab4f125ea.tar.gz
llvm-c287137ce7455c63be0075e0d5aba0bab4f125ea.tar.bz2
llvm-c287137ce7455c63be0075e0d5aba0bab4f125ea.tar.xz
Change WriteTypeSymbolic to not put a space out before types, also, remove
the old std::ostream version. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65720 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly/Writer.h')
-rw-r--r--include/llvm/Assembly/Writer.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index c9f8edb352..8e79b272b0 100644
--- a/include/llvm/Assembly/Writer.h
+++ b/include/llvm/Assembly/Writer.h
@@ -27,10 +27,9 @@ class Value;
class raw_ostream;
// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
-// type, iff there is an entry in the Module's symbol table for the specified
-// type or one of its component types. This is slower than a simple x << Type;
+// type, if there is an entry in the Module's symbol table for the specified
+// type or one of its component types.
//
-void WriteTypeSymbolic(std::ostream &, const Type *, const Module *M);
void WriteTypeSymbolic(raw_ostream &, const Type *, const Module *M);
// WriteAsOperand - Write the name of the specified value out to the specified