diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2012-09-27 09:57:10 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2012-09-27 09:57:10 +0000 |
commit | a876013dc91bbd6bf4fe37c0d4cc7d1d5f5f4184 (patch) | |
tree | dc7a4a2b21e7ad3ba01c2d7383031f9bf1aac7b9 /clang/lib/CodeGen/CodeGenTBAA.cpp | |
parent | b6879ce94cd24e4d76e60ad52c648edb5af221a5 (diff) | |
download | bcm5719-llvm-a876013dc91bbd6bf4fe37c0d4cc7d1d5f5f4184.tar.gz bcm5719-llvm-a876013dc91bbd6bf4fe37c0d4cc7d1d5f5f4184.zip |
Fix a typo 'iff' => 'if'
llvm-svn: 164766
Diffstat (limited to 'clang/lib/CodeGen/CodeGenTBAA.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenTBAA.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenTBAA.cpp b/clang/lib/CodeGen/CodeGenTBAA.cpp index bab60afbb7f..3d5725db68c 100644 --- a/clang/lib/CodeGen/CodeGenTBAA.cpp +++ b/clang/lib/CodeGen/CodeGenTBAA.cpp @@ -135,7 +135,7 @@ CodeGenTBAA::getTBAAInfo(QualType QTy) { // Enum types are distinct types. In C++ they have "underlying types", // however they aren't related for TBAA. if (const EnumType *ETy = dyn_cast<EnumType>(Ty)) { - // In C mode, two anonymous enums are compatible iff their members + // In C mode, two anonymous enums are compatible if their members // are the same -- see C99 6.2.7p1. For now, be conservative. We could // theoretically implement this by combining information about all the // members into a single identifying MDNode. |