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
This commit is contained in:
Duncan Sands
2010-09-29 20:09:55 +00:00
parent f513ab8b77
commit 18d52f2fb5
10 changed files with 16 additions and 16 deletions

View File

@@ -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