From 526b114d182e640913f65135aa8df05bedabfa99 Mon Sep 17 00:00:00 2001 From: Stephen Williams Date: Thu, 4 Mar 2010 18:08:45 -0800 Subject: [PATCH] Minor fixes to README.txt file. (cherry picked from commit b48b833dabe4d9e076345b7f796e8edb0f5a1a69) --- README.txt | 5 +++-- StringHeap.h | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.txt b/README.txt index 3186c5038..617e4a702 100644 --- a/README.txt +++ b/README.txt @@ -156,8 +156,9 @@ step. There may be dangling references, and it is not yet clear which module is the root. One can see a human readable version of the final pform by using the -``-P '' flag to the compiler. This will cause iverilog to dump -the pform into the file named . +``-P '' flag to the ``ivl'' subcommand. This will cause ivl +to dump the pform into the file named . (Note that this is not +normally done, unless debugging the ``ivl'' subcommand.) 3.3 Elaboration diff --git a/StringHeap.h b/StringHeap.h index 664483d83..8457845a8 100644 --- a/StringHeap.h +++ b/StringHeap.h @@ -38,7 +38,7 @@ class perm_string { operator const char* () const { return str(); } // This is an escape for making perm_string objects out of - // literals. For example, per_string::literal("Label"); Please + // literals. For example, perm_string::literal("Label"); Please // do *not* cheat and pass arbitrary const char* items here. static perm_string literal(const char*t) { return perm_string(t); }