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

Unified Diff: src/trusted/service_runtime/arch/arm/nacl_text_pad_test.S

Issue 11269063: Fix the NACL_INSTR_* names that I just checked in to NACL_INSTR_ARM_*, as suggested by mseaborn. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 8 years, 2 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
« no previous file with comments | « src/trusted/debug_stub/abi.cc ('k') | src/trusted/service_runtime/arch/arm/sel_ldr_arm.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/arch/arm/nacl_text_pad_test.S
diff --git a/src/trusted/service_runtime/arch/arm/nacl_text_pad_test.S b/src/trusted/service_runtime/arch/arm/nacl_text_pad_test.S
index fd5c296b42c4df0acdfe365d6616a9a1359083f0..c73644f1e3bfe8cb8ffc9e9750503d25e22604e4 100644
--- a/src/trusted/service_runtime/arch/arm/nacl_text_pad_test.S
+++ b/src/trusted/service_runtime/arch/arm/nacl_text_pad_test.S
@@ -224,11 +224,12 @@ _start:
/* NOTE: unlike x86 the alignment directive on ARM takes
the logarithm of the alignment */
#define POW2_BIGGER_THAN_DOT 14
- .align32 POW2_BIGGER_THAN_DOT, NACL_INSTR_HALT_FILL
+ .align32 POW2_BIGGER_THAN_DOT, NACL_INSTR_ARM_HALT_FILL
.fill (TEXT_EXTEND - (1 << POW2_BIGGER_THAN_DOT))/4, 4, \
- NACL_INSTR_HALT_FILL
+ NACL_INSTR_ARM_HALT_FILL
#else
- .fill (TEXT_EXTEND - (. - start_of_text))/4, 4, NACL_INSTR_HALT_FILL
+ .fill (TEXT_EXTEND - (. - start_of_text))/4, 4, \
+ NACL_INSTR_ARM_HALT_FILL
#endif
end_of_text:
« no previous file with comments | « src/trusted/debug_stub/abi.cc ('k') | src/trusted/service_runtime/arch/arm/sel_ldr_arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698