diff options
author | Duncan Sands <baldrick@free.fr> | 2010-09-29 20:09:55 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-09-29 20:09:55 +0000 |
commit | e9da6db67fba424f20f9dcf4406f3ad93a622ff9 (patch) | |
tree | f622c11a721dcbf1a7b5bd225bfcd54634d1f6ae /llvm/utils/findoptdiff | |
parent | 984cdeef3726070d46b5f5663222a8f9e896768b (diff) | |
download | bcm5719-llvm-e9da6db67fba424f20f9dcf4406f3ad93a622ff9.tar.gz bcm5719-llvm-e9da6db67fba424f20f9dcf4406f3ad93a622ff9.zip |
Convert a bunch of uses of 'bytecode' into 'bitcode'. This
is not everything, but the remaining cases are less trivial.
llvm-svn: 115080
Diffstat (limited to 'llvm/utils/findoptdiff')
-rwxr-xr-x | llvm/utils/findoptdiff | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/utils/findoptdiff b/llvm/utils/findoptdiff index 4f8d08dbffe..7a2eab05d71 100755 --- a/llvm/utils/findoptdiff +++ b/llvm/utils/findoptdiff @@ -14,7 +14,7 @@ # second build contains some experimental optimization features that # are suspected of producing a misoptimization. # -# The script takes two bytecode files, one from each build. They are +# The script takes two bitcode files, one from each build. They are # presumed to be a compilation of the same program or program fragment # with the only difference being the builds. # @@ -39,9 +39,9 @@ # llvm2 # is the path to the second llvm build dir # bc1 -# is the bytecode file for the first llvm environment +# is the bitcode file for the first llvm environment # bc2 -# is the bytecode file for the second llvm environment +# is the bitcode file for the second llvm environment # filter1 # is an optional filter for filtering the llvm1 generated assembly # filter2 |