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 | b5efc2b5d31b36aea83c0c660407176ffe3cd410 (patch) | |
tree | 40cb3c83836fe7978b80dd40219dca19c88f6ba9 /utils/findoptdiff | |
parent | 4e530292a302f941a103b52741274a9c2e1475a5 (diff) | |
download | external_llvm-b5efc2b5d31b36aea83c0c660407176ffe3cd410.zip external_llvm-b5efc2b5d31b36aea83c0c660407176ffe3cd410.tar.gz external_llvm-b5efc2b5d31b36aea83c0c660407176ffe3cd410.tar.bz2 |
Convert a bunch of uses of 'bytecode' into 'bitcode'. This
is not everything, but the remaining cases are less trivial.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115080 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/findoptdiff')
-rwxr-xr-x | utils/findoptdiff | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/findoptdiff b/utils/findoptdiff index 4f8d08d..7a2eab0 100755 --- a/utils/findoptdiff +++ b/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 |