[CodeGenPrepare] Fix typo in comment. NFC

llvm-svn: 317614
This commit is contained in:
Craig Topper 2017-11-07 20:56:17 +00:00
parent 5cd044e8c8
commit 87e715fbac
1 changed files with 1 additions and 1 deletions

View 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.