diff options
author | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-06-26 11:19:26 +0000 |
---|---|---|
committer | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-06-26 11:19:26 +0000 |
commit | e821e79fce23d656885ceb860e31f74df948e0a4 (patch) | |
tree | 98be40f8258d5044357a04ad9833d1714dad6a12 /llvm/bindings/go | |
parent | a6319e5f83718e925870e5c758e40228b4eb4b33 (diff) | |
download | bcm5719-llvm-e821e79fce23d656885ceb860e31f74df948e0a4.tar.gz bcm5719-llvm-e821e79fce23d656885ceb860e31f74df948e0a4.zip |
[IR/DIVar] Add the flag for params that have unmodified value
Introduce the debug info flag that indicates that a parameter has unchanged
value throughout a function. This info will be used to emit the expressions
with DW_OP_entry_value.
([4/13] Introduce the debug entry values.)
Co-authored-by: Ananth Sowda <asowda@cisco.com>
Co-authored-by: Nikola Prica <nikola.prica@rt-rk.com>
Co-authored-by: Ivan Baev <ibaev@cisco.com>
Differential Revision: https://reviews.llvm.org/D58034
llvm-svn: 364406
Diffstat (limited to 'llvm/bindings/go')
-rw-r--r-- | llvm/bindings/go/llvm/dibuilder.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/bindings/go/llvm/dibuilder.go b/llvm/bindings/go/llvm/dibuilder.go index da1bb0fb710..98c11c15115 100644 --- a/llvm/bindings/go/llvm/dibuilder.go +++ b/llvm/bindings/go/llvm/dibuilder.go @@ -54,6 +54,7 @@ const ( FlagVector FlagStaticMember FlagIndirectVariable + FlagArgumentNotModified ) type DwarfLang uint32 |