summaryrefslogtreecommitdiff
path: root/probe/HAVE_INLINE_ASM
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2021-09-07 13:35:38 -0700
committerMichael Forney <mforney@mforney.org>2021-09-07 13:41:35 -0700
commitfefb82678bd82c02fd177e58170a7558df504b9c (patch)
tree6f4d3ee8b786fbf0571f1b920cb547b21b8eea1f /probe/HAVE_INLINE_ASM
parent9b4962ff1c89d5c3babd45e14542dba97d4ae74f (diff)
ffmpeg: Probe for inline asm and intrinsics
Diffstat (limited to 'probe/HAVE_INLINE_ASM')
-rw-r--r--probe/HAVE_INLINE_ASM4
1 files changed, 4 insertions, 0 deletions
diff --git a/probe/HAVE_INLINE_ASM b/probe/HAVE_INLINE_ASM
new file mode 100644
index 00000000..726c32f6
--- /dev/null
+++ b/probe/HAVE_INLINE_ASM
@@ -0,0 +1,4 @@
+int main(void) {
+ __asm__("");
+ return 0;
+}