Fix the comment which was backwards.
authorYaron Keren <yaron.keren@gmail.com>
Tue, 17 Jun 2014 17:09:24 +0000 (17:09 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Tue, 17 Jun 2014 17:09:24 +0000 (17:09 +0000)
llvm-svn: 211112

clang/lib/CodeGen/CodeGenTypes.h

index 59e3089..fe155b5 100644 (file)
@@ -104,7 +104,7 @@ class CodeGenTypes {
   
 private:
   /// TypeCache - This map keeps cache of llvm::Types
-  /// and maps llvm::Types to corresponding clang::Type.
+  /// and maps clang::Type to corresponding llvm::Type.
   llvm::DenseMap<const Type *, llvm::Type *> TypeCache;
 
 public: