diff options
author | Eric Christopher <echristo@gmail.com> | 2015-12-16 23:10:53 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-12-16 23:10:53 +0000 |
commit | bfba572425bd2f88c7ae406efe350c323812643f (patch) | |
tree | cf3e206f0b1e1e57b32586f284a327b0329c1d02 /llvm/lib/Transforms/Scalar/Reassociate.cpp | |
parent | be5286629fa828dbc1aaf123dfb4bdfe33473df9 (diff) | |
download | llvm-bfba572425bd2f88c7ae406efe350c323812643f.zip llvm-bfba572425bd2f88c7ae406efe350c323812643f.tar.gz llvm-bfba572425bd2f88c7ae406efe350c323812643f.tar.bz2 |
Fix funciton->function typo.
llvm-svn: 255841
Diffstat (limited to 'llvm/lib/Transforms/Scalar/Reassociate.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/Reassociate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/Reassociate.cpp b/llvm/lib/Transforms/Scalar/Reassociate.cpp index c35d9f4..fb970c7 100644 --- a/llvm/lib/Transforms/Scalar/Reassociate.cpp +++ b/llvm/lib/Transforms/Scalar/Reassociate.cpp @@ -1229,7 +1229,7 @@ static Value *OptimizeAndOrXor(unsigned Opcode, return nullptr; } -/// Helper funciton of CombineXorOpnd(). It creates a bitwise-and +/// Helper function of CombineXorOpnd(). It creates a bitwise-and /// instruction with the given two operands, and return the resulting /// instruction. There are two special cases: 1) if the constant operand is 0, /// it will return NULL. 2) if the constant is ~0, the symbolic operand will |