diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-12-01 21:57:27 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-01 21:57:27 +0000 |
| commit | 63771c099e1c90ef898a3ffdd8761b92168240af (patch) | |
| tree | ce31b3f46982b5982d8a7a9717d2332a1eed14ce | |
| parent | ec5f8ae6a840e308792b6dcf2f393004f6dd1bcf (diff) | |
| download | bcm5719-llvm-63771c099e1c90ef898a3ffdd8761b92168240af.tar.gz bcm5719-llvm-63771c099e1c90ef898a3ffdd8761b92168240af.zip | |
Fix typo.
llvm-svn: 90262
| -rw-r--r-- | clang/include/clang/Frontend/CompilerInstance.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Frontend/CompilerInstance.h b/clang/include/clang/Frontend/CompilerInstance.h index d7e7d991f37..007006d493b 100644 --- a/clang/include/clang/Frontend/CompilerInstance.h +++ b/clang/include/clang/Frontend/CompilerInstance.h @@ -222,7 +222,7 @@ public: void setDiagnostics(Diagnostic *Value); DiagnosticClient &getDiagnosticClient() const { - assert(Target && "Compiler instance has no diagnostic client!"); + assert(DiagClient && "Compiler instance has no diagnostic client!"); return *DiagClient; } |

