diff options
| author | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-07-12 09:45:12 +0000 | 
|---|---|---|
| committer | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-07-12 09:45:12 +0000 | 
| commit | 0739ccd3b588a6f2562bdc5a8f8847a49356394e (patch) | |
| tree | 29ee68538b3ada08ad9dcf774d33a2ceb92121a4 /llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h | |
| parent | 210a9b6aee625f5924281a8ee36036396fff1450 (diff) | |
| download | bcm5719-llvm-0739ccd3b588a6f2562bdc5a8f8847a49356394e.tar.gz bcm5719-llvm-0739ccd3b588a6f2562bdc5a8f8847a49356394e.zip  | |
Revert "[DwarfDebug] Dump call site debug info"
A build failure was found on the SystemZ platform.
This reverts commit 9e7e73578e54cd22b3c7af4b54274d743b6607cc.
llvm-svn: 365886
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h | 11 | 
1 files changed, 1 insertions, 10 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h b/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h index 9f9baf8c1a1..ec2ef6e575f 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h @@ -120,7 +120,7 @@ protected:    enum { Unknown = 0, Register, Memory, Implicit };    /// The flags of location description being produced. -  enum { EntryValue = 1, CallSiteParamValue }; +  enum { EntryValue = 1 };    unsigned LocationKind : 3;    unsigned LocationFlags : 2; @@ -147,10 +147,6 @@ public:      return LocationFlags & EntryValue;    } -  bool isParameterValue() { -    return LocationFlags & CallSiteParamValue; -  } -    Optional<uint8_t> TagOffset;  protected: @@ -268,11 +264,6 @@ public:      LocationFlags |= EntryValue;    } -  /// Lock this down to become a call site parameter location. -  void setCallSiteParamValueFlag() { -    LocationFlags |= CallSiteParamValue; -  } -    /// Emit a machine register location. As an optimization this may also consume    /// the prefix of a DwarfExpression if a more efficient representation for    /// combining the register location and the first operation exists.  | 

