diff options
author | Dan Gohman <gohman@apple.com> | 2010-10-15 20:24:10 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-10-15 20:24:10 +0000 |
commit | 0a53198149d26a908bd89ca945ee3f12b4acc949 (patch) | |
tree | 321fd237983ad8192424ed31e8e8da036f1aceed | |
parent | 0b5c4fc2ae3b503c2b1f354bf52b718aa50a6aee (diff) |
Fix a typo in a comment Frits van Bommel spotted.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116614 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/CodeGenTBAA.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenTBAA.cpp b/lib/CodeGen/CodeGenTBAA.cpp index 99a58a7457..5aea0f21ae 100644 --- a/lib/CodeGen/CodeGenTBAA.cpp +++ b/lib/CodeGen/CodeGenTBAA.cpp @@ -56,7 +56,7 @@ CodeGenTBAA::getTBAAInfo(QualType QTy) { // Character types are special and can alias anything. // In C++, this technically only includes "char" and "unsigned char", // and not "signed char". In C, it includes all three. For now, - // the risk of exploting this detail in C++ seems likely to outweigh + // the risk of exploiting this detail in C++ seems likely to outweigh // the benefit. case BuiltinType::Char_U: case BuiltinType::Char_S: |