From 08f5fd51cc1690c86bac2f1dd841d27da2eefe44 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Thu, 31 Aug 2017 15:56:49 +0000 Subject: [codeview] Generalize DIExpression parsing to handle load chains Summary: Hopefully this also clarifies exactly when and why we're rewriting certiain S_LOCALs using reference types: We're using the reference type to stand in for a zero-offset load. Reviewers: inglorion Subscribers: llvm-commits, hiraditya Differential Revision: https://reviews.llvm.org/D37309 llvm-svn: 312247 --- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h') diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h index 4345bb4d1c2..fe4f0a0092c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h @@ -94,7 +94,7 @@ class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public DebugHandlerBase { struct LocalVariable { const DILocalVariable *DIVar = nullptr; SmallVector DefRanges; - bool Deref = false; + bool UseReferenceType = false; }; struct InlineSite { -- cgit v1.2.3