Fix a pasto in a comment.
authorDan Gohman <gohman@apple.com>
Thu, 26 Jul 2007 15:11:00 +0000 (15:11 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 26 Jul 2007 15:11:00 +0000 (15:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40527 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/IntrinsicEmitter.cpp

index 89e9621c172bab416061af24af4aa703f2cb2790..3c1122778592aad5bdc1a84ca75f3c4c2daa9e48 100644 (file)
@@ -309,7 +309,7 @@ EmitNoMemoryInfo(const std::vector<CodeGenIntrinsic> &Ints, std::ostream &OS) {
       break;
     }
   }
-  OS << "    return true; // These intrinsics have no side effects.\n";
+  OS << "    return true; // These intrinsics do not reference memory.\n";
   OS << "  }\n";
   OS << "#endif\n\n";
 }