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/DartARM32/assembler_arm.h

Issue 1516103003: Add the RSC instruction to the ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nit. Created 5 years 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
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/DartARM32/assembler_arm.h
diff --git a/src/DartARM32/assembler_arm.h b/src/DartARM32/assembler_arm.h
index c0d224ea1627ce880d21340a051fae40d3bb35ad..00982b127ce912ab32efcee5f86ed9ec0dfc085a 100644
--- a/src/DartARM32/assembler_arm.h
+++ b/src/DartARM32/assembler_arm.h
@@ -473,15 +473,16 @@ class Assembler : public ValueObject {
void adc(Register rd, Register rn, Operand o, Condition cond = AL);
void adcs(Register rd, Register rn, Operand o, Condition cond = AL);
-#endif
+ // Moved to ARM32::AssemblerARM32::sbc()
void sbc(Register rd, Register rn, Operand o, Condition cond = AL);
+ // Moved to ARM32::AssemblerARM32::sbc()
void sbcs(Register rd, Register rn, Operand o, Condition cond = AL);
+ // Moved to ARM32::AssemblerARM32::rsc()
void rsc(Register rd, Register rn, Operand o, Condition cond = AL);
-#if 0
// Moved to ARM32::AssemblerARM32::tst();
void tst(Register rn, Operand o, Condition cond = AL);
#endif
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698