summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-08-21 22:53:54 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-08-21 22:53:54 +0000
commit55d4c38074145bf9f594142b6b4cdca60699f4d1 (patch)
tree2603c9458e85ebcc628d2ef9e410e2ae1cde7a32 /lib/Transforms/IPO
parent4920bf77be434681a4f782c80ca0ab982abfb726 (diff)
downloadllvm-55d4c38074145bf9f594142b6b4cdca60699f4d1.tar.gz
llvm-55d4c38074145bf9f594142b6b4cdca60699f4d1.tar.bz2
llvm-55d4c38074145bf9f594142b6b4cdca60699f4d1.tar.xz
Fixed typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188957 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO')
-rw-r--r--lib/Transforms/IPO/StripSymbols.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/StripSymbols.cpp b/lib/Transforms/IPO/StripSymbols.cpp
index 14bbdc4d5a..3d601b6a38 100644
--- a/lib/Transforms/IPO/StripSymbols.cpp
+++ b/lib/Transforms/IPO/StripSymbols.cpp
@@ -335,7 +335,7 @@ bool StripDebugDeclare::runOnModule(Module &M) {
bool StripDeadDebugInfo::runOnModule(Module &M) {
bool Changed = false;
- // Debugging infomration is encoded in llvm IR using metadata. This is designed
+ // Debugging information is encoded in llvm IR using metadata. This is designed
// such a way that debug info for symbols preserved even if symbols are
// optimized away by the optimizer. This special pass removes debug info for
// such symbols.