Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: src/IceTargetLoweringARM32.h

Issue 1368993004: Subzero: Improve usability of liveness-related tools. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix comments Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/IceTargetLoweringARM32.h
diff --git a/src/IceTargetLoweringARM32.h b/src/IceTargetLoweringARM32.h
index 6085eed48b016b3459e4dd343a5413eeee002077..3f30f5476b3f915efef5f5255f06dcc804b46717 100644
--- a/src/IceTargetLoweringARM32.h
+++ b/src/IceTargetLoweringARM32.h
@@ -276,10 +276,10 @@ protected:
Dest = makeReg(Src0->getType(), RegNum);
Context.insert(InstARM32Mov::create(Func, Dest, Src0, Pred));
}
- void _mov_nonkillable(Variable *Dest, Operand *Src0,
- CondARM32::Cond Pred = CondARM32::AL) {
+ void _mov_redefined(Variable *Dest, Operand *Src0,
+ CondARM32::Cond Pred = CondARM32::AL) {
Inst *NewInst = InstARM32Mov::create(Func, Dest, Src0, Pred);
- NewInst->setDestNonKillable();
+ NewInst->setDestRedefined();
Context.insert(NewInst);
}
/// The Operand can only be a 16-bit immediate or a ConstantRelocatable (with

Powered by Google App Engine
This is Rietveld 408576698