OSDN Git Service

[CodeGenPrepare] Fix typo in comment. NFC
authorCraig Topper <craig.topper@intel.com>
Tue, 7 Nov 2017 20:56:17 +0000 (20:56 +0000)
committerCraig Topper <craig.topper@intel.com>
Tue, 7 Nov 2017 20:56:17 +0000 (20:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317614 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CodeGenPrepare.cpp

index 5b48f5f..d6633a5 100644 (file)
@@ -6439,7 +6439,7 @@ bool CodeGenPrepare::placeDbgValues(Function &F) {
       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.