diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-19 04:44:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-19 04:44:58 +0000 |
commit | ec5a332e46d4ca8407081f3e8d6e0bc34bbb5459 (patch) | |
tree | 2d6de79153f76ea41b9535a3ad6424426ade23c9 | |
parent | 2adba6a9a20f2d5a61fa4c617c9e7f0f9c98082e (diff) | |
download | bcm5719-llvm-ec5a332e46d4ca8407081f3e8d6e0bc34bbb5459.tar.gz bcm5719-llvm-ec5a332e46d4ca8407081f3e8d6e0bc34bbb5459.zip |
fix another typo gabor noticed
llvm-svn: 65006
-rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index 60e0edf206f..5d1d9353868 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -2364,7 +2364,7 @@ QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, } if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { - // Two identical pointers types are always compatible. + // Two identical pointer types are always compatible. return LHSTy; } |