This change adds the unroll metadata "llvm.loop.unroll.enable" which directs
the optimizer to unroll a loop fully if the trip count is known at compile time, and
unroll partially if the trip count is not known at compile time. This differs from
"llvm.loop.unroll.full" which explicitly does not unroll a loop if the trip count is not
known at compile time.
Corresponding clang patch which maps "#pragma unroll" to the new
"llvm.loop.unroll.enable" metadata: http://reviews.llvm.org/D11738