X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FCodingStandards.html;h=6cfe5428356e59d6f2950e8dcaad4aac8f29b363;hb=6a94de299029043f0a51a401398921cc8bb2418d;hp=f6316194bf6282c15598be5a91907e6fb0d3e3c1;hpb=669ed45029765df223ba7e9cdc242f62c17497e4;p=oota-llvm.git diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html index f6316194bf6..6cfe5428356 100644 --- a/docs/CodingStandards.html +++ b/docs/CodingStandards.html @@ -512,7 +512,8 @@ library. There are two problems with this:

more pressure on the VM system on low-memory machines. - +
+
@@ -553,19 +554,21 @@ dump(DOUT); - - +stream is cnull.
Old Way
llvm::StringStream
void print(std::ostream &Out);
+      
void print(std::ostream &Out);
 // ...
 print(std::cerr);
void print(std::ostream &Out);
+      
void print(std::ostream &Out);
 void print(std::ostream *Out) { if (Out) print(*Out) }
 // ...
 print(llvm::cerr);
-
    N.B. The second print method is called by the print +
    +N.B. The second print method is called by the print expression. It prevents the execution of the first print method if the -stream is cnull.
+