summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/main.c b/main.c
deleted file mode 100644
index db72bf9..0000000
--- a/main.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <stdio.h>
-
-#if !defined(NDEBUG)
- #define TRACE(MSG) \
- fprintf(stderr, "%s\n", #MSG)
-#else
- #define TRACE(MSG)
-#endif
-
-int main(int argc, char *argv[]) {
- TRACE(pre assembly);
- __asm__("imul %%eax, %%eax"
- :
- :
- :
- );
- TRACE(post assembly);
- return 0;
-}
-
-/* https://www.ibiblio.org/gferg/ldp/GCC-Inline-Assembly-HOWTO.html */ \ No newline at end of file