[llvm] r317614 - [CodeGenPrepare] Fix typo in comment. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 7 12:56:17 PST 2017


Author: ctopper
Date: Tue Nov  7 12:56:17 2017
New Revision: 317614

URL: http://llvm.org/viewvc/llvm-project?rev=317614&view=rev
Log:
[CodeGenPrepare] Fix typo in comment. NFC

Modified:
    llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp

Modified: llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp?rev=317614&r1=317613&r2=317614&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp (original)
+++ llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp Tue Nov  7 12:56:17 2017
@@ -6439,7 +6439,7 @@ bool CodeGenPrepare::placeDbgValues(Func
       Instruction *Insn = &*BI++;
       DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn);
       // Leave dbg.values that refer to an alloca alone. These
-      // instrinsics describe the address of a variable (= the alloca)
+      // intrinsics describe the address of a variable (= the alloca)
       // being taken.  They should not be moved next to the alloca
       // (and to the beginning of the scope), but rather stay close to
       // where said address is used.




More information about the llvm-commits mailing list