summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm2cpp/llvm2cpp.cpp
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2007-07-05 17:07:56 +0000
committerGabor Greif <ggreif@gmail.com>2007-07-05 17:07:56 +0000
commite16561cd5d459d4f1240431f4b564358024467f4 (patch)
tree42db314b3407bf11c48dabcba1d040387bc3eadf /llvm/tools/llvm2cpp/llvm2cpp.cpp
parent5892cfd2636b89e66f59ff5a3829515463d302d5 (diff)
downloadbcm5719-llvm-e16561cd5d459d4f1240431f4b564358024467f4.tar.gz
bcm5719-llvm-e16561cd5d459d4f1240431f4b564358024467f4.zip
Here is the bulk of the sanitizing.
Almost all occurrences of "bytecode" in the sources have been eliminated. llvm-svn: 37913
Diffstat (limited to 'llvm/tools/llvm2cpp/llvm2cpp.cpp')
-rw-r--r--llvm/tools/llvm2cpp/llvm2cpp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm2cpp/llvm2cpp.cpp b/llvm/tools/llvm2cpp/llvm2cpp.cpp
index d4382cd5cee..2db7543f481 100644
--- a/llvm/tools/llvm2cpp/llvm2cpp.cpp
+++ b/llvm/tools/llvm2cpp/llvm2cpp.cpp
@@ -31,7 +31,7 @@
using namespace llvm;
static cl::opt<std::string>
-InputFilename(cl::Positional, cl::desc("<input LLVM bytecode file>"),
+InputFilename(cl::Positional, cl::desc("<input LLVM bitcode file>"),
cl::init("-"));
static cl::opt<std::string>
@@ -60,7 +60,7 @@ int main(int argc, char **argv) {
if (ErrorMessage.size())
std::cerr << ErrorMessage << "\n";
else
- std::cerr << "bytecode didn't read correctly.\n";
+ std::cerr << "bitcode didn't read correctly.\n";
return 1;
}
OpenPOWER on IntegriCloud