mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Fix warning.
llvm-svn: 137658
This commit is contained in:
parent
54ded8463c
commit
9ea2ce9b7b
@ -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…
Reference in New Issue
Block a user