[PATCH] D21281: Fix a typo in loop versioning.

Vikram TV via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 13 02:01:11 PDT 2016


tvvikram created this revision.
tvvikram added a subscriber: llvm-commits.

http://reviews.llvm.org/D21281

Files:
  lib/Transforms/Utils/LoopVersioning.cpp

Index: lib/Transforms/Utils/LoopVersioning.cpp
===================================================================
--- lib/Transforms/Utils/LoopVersioning.cpp
+++ lib/Transforms/Utils/LoopVersioning.cpp
@@ -77,7 +77,7 @@
 
   if (MemRuntimeCheck && SCEVRuntimeCheck) {
     RuntimeCheck = BinaryOperator::Create(Instruction::Or, MemRuntimeCheck,
-                                          SCEVRuntimeCheck, "ldist.safe");
+                                          SCEVRuntimeCheck, "lver.safe");
     if (auto *I = dyn_cast<Instruction>(RuntimeCheck))
       I->insertBefore(RuntimeCheckBB->getTerminator());
   } else


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D21281.60495.patch
Type: text/x-patch
Size: 620 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160613/5c02f384/attachment.bin>


More information about the llvm-commits mailing list