1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix typo in a comment.

llvm-svn: 37526
This commit is contained in:
Owen Anderson 2007-06-08 20:57:08 +00:00
parent 4621335527
commit 2cf00c37de

View File

@ -13,7 +13,7 @@
// the optimization. It replaces redundant values with uses of earlier
// occurences of the same value. While this is beneficial in that it eliminates
// unneeded computation, it also increases register pressure by creating large
// live ranges, and should be used with caution on platforms that a very
// live ranges, and should be used with caution on platforms that are very
// sensitive to register pressure.
//
//===----------------------------------------------------------------------===//