mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 06:33:21 +00:00
Fix warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137658 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c4bda5633a
commit
c890b19226
@ -467,7 +467,7 @@ DIE *DwarfDebug::constructVariableDIE(DbgVariable *DV, LexicalScope *Scope) {
|
||||
} else {
|
||||
// .. else use frame index.
|
||||
int FI = DV->getFrameIndex();
|
||||
if (FI != ~0U) {
|
||||
if (FI != ~0) {
|
||||
unsigned FrameReg = 0;
|
||||
const TargetFrameLowering *TFI = Asm->TM.getFrameLowering();
|
||||
int Offset =
|
||||
|
@ -132,7 +132,7 @@ public:
|
||||
// AbsVar may be NULL.
|
||||
DbgVariable(DIVariable V, DbgVariable *AV)
|
||||
: Var(V), TheDIE(0), DotDebugLocOffset(~0U), AbsVar(AV), MInsn(0),
|
||||
FrameIndex(~0U) {}
|
||||
FrameIndex(~0) {}
|
||||
|
||||
// Accessors.
|
||||
DIVariable getVariable() const { return Var; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user