First of all, you probably have a few MB of cache, so I doubt it would fill the entire cache.
Besides that, the CPU is busy doing lots of things beside your code, so I doubt the entire cache will be used just for your code.
Besides that, the movement between RAM (you probably got a few GB) to the cache is pretty neglectable.
So, yea, removing the loop (if it's a constant length loop) and replacing it with explicit lines should give you an improvement.
The amount or percentage of the improvement really depends more on the language and compiler than the hardware in this case.
Note that there are languages and situations where this might even take longer (interpretative languages for example)
Disclaimer:
This type of optimization isn't used much, mainly because it doesn't improve much (usually).
Try looking at other places (or others ways) to improve.