You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
525 B
24 lines
525 B
7 years ago
|
---
|
||
|
CONFIG/src/backend/probe_gas_s390.S | 13 +++++++++
|
||
|
10 files changed, 108 insertions(+), 7 deletions(-)
|
||
|
|
||
|
Index: b/CONFIG/src/backend/probe_gas_s390.S
|
||
|
===================================================================
|
||
|
--- /dev/null
|
||
|
+++ b/CONFIG/src/backend/probe_gas_s390.S
|
||
|
@@ -0,0 +1,13 @@
|
||
|
+#define ATL_GAS_PPC
|
||
|
+#include "atlas_asm.h"
|
||
|
+/*
|
||
|
+ * Linux S390 assembler for:
|
||
|
+ * int asm_probe(int i)
|
||
|
+ * RETURNS: i*3
|
||
|
+ */
|
||
|
+.globl ATL_asmdecor(asm_probe)
|
||
|
+ATL_asmdecor(asm_probe):
|
||
|
+ lr r3,r2
|
||
|
+ ar r2,r3
|
||
|
+ ar r2,r3
|
||
|
+ br r14
|
||
|
|