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

Unified Diff: src/trusted/service_runtime/linux/arm/sel_segments.c

Issue 1485143002: arm: Make sel build with clang's built-in assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/linux/arm/sel_segments.c
diff --git a/src/trusted/service_runtime/linux/arm/sel_segments.c b/src/trusted/service_runtime/linux/arm/sel_segments.c
index 311299033598275cd792025c47e356135a698c55..3d43c3cd49ce684ad39d1c021b04d2feaf17402b 100644
--- a/src/trusted/service_runtime/linux/arm/sel_segments.c
+++ b/src/trusted/service_runtime/linux/arm/sel_segments.c
@@ -10,7 +10,7 @@
uint32_t NaClGetStackPtr(void) {
uint32_t sp;
- asm("mov %0, %%sp" : "=r" (sp));
+ asm("mov %0, sp" : "=r" (sp));
return sp;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698