diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2012-09-27 10:16:10 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2012-09-27 10:16:10 +0000 |
commit | 33b5baf189bc2d866d69c1c81908d2b37dce79ad (patch) | |
tree | 0cc0210d5e5cb11c0164c7e3f40e7d6cfc2d61dc /clang/lib/CodeGen/CGDecl.cpp | |
parent | 91ce36c98668d1f3be0fe4a3b92aba86556c949f (diff) | |
download | bcm5719-llvm-33b5baf189bc2d866d69c1c81908d2b37dce79ad.tar.gz bcm5719-llvm-33b5baf189bc2d866d69c1c81908d2b37dce79ad.zip |
Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. See: http://en.wikipedia.org/wiki/If_and_only_if Commit 164766
llvm-svn: 164769
Diffstat (limited to 'clang/lib/CodeGen/CGDecl.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp index 88a252a697d..b9489e3f040 100644 --- a/clang/lib/CodeGen/CGDecl.cpp +++ b/clang/lib/CodeGen/CGDecl.cpp @@ -1179,7 +1179,7 @@ void CodeGenFunction::emitAutoVarTypeCleanup( // If we haven't chosen a more specific destroyer, use the default. if (!destroyer) destroyer = getDestroyer(dtorKind); - // Use an EH cleanup in array destructors if the destructor itself + // Use an EH cleanup in array destructors iff the destructor itself // is being pushed as an EH cleanup. bool useEHCleanup = (cleanupKind & EHCleanup); EHStack.pushCleanup<DestroyObject>(cleanupKind, addr, type, destroyer, |