]> www.ginac.de Git - cln.git/blobdiff - include/cln/modules.h
* src/float/base/cl_ieee.cc: try to do magic to the FPU only if
[cln.git] / include / cln / modules.h
index 33bce47cb5902bf573bcae2b80668fdd353ebcd7..314df9c4474261b7319d551f57ae8a54263e1c15 100644 (file)
   // Output a label inside a function.
   // See macro ASM_OUTPUT_LABEL in the gcc sources.
   #if defined(__hppa__)
-    #define CL_OUTPUT_LABEL(label)  ASM_VOLATILE ("\n" label)
+    // Some hppa (Linux) systems want `label:', HPUX used to use just `label'.
+    // I tried to find out, but was unable to find the assembler on my HPUX-11
+    // boxen so decided to potentially ditch the support (no joke).  Please
+    // send an email if you can explain to me what's going on! (-rbk. 07/2001)
+    #define CL_OUTPUT_LABEL(label)  ASM_VOLATILE ("\n" label ":")
   #else
     #define CL_OUTPUT_LABEL(label)  ASM_VOLATILE ("\n" label ":")
   #endif