From 86075b391c354edf591269e3901174c22317d4b2 Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 25 Apr 2009 16:37:08 +0000 Subject: [PATCH] typo in XFORM asm check, noticed by Emanuele Giaquinta git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29232 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 4622aa5e68..ae6ea1801f 100755 --- a/configure +++ b/configure @@ -2616,7 +2616,7 @@ def_xform_asm='#define HAVE_XFORM_ASM 0' xform_asm=no echocheck "XFORM ASM support" cat > $TMPC << EOF -int main(void) { __asm__ volatile ("lwzx 0, %y0" :: "Z"(*(int*)0)"); return 0; } +int main(void) { __asm__ volatile ("lwzx 0, %y0" :: "Z"(*(int*)0)); return 0; } EOF cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1' echores "$xform_asm"