diff -r f70b728ea30c -r a1925fb7753a sbsv2/raptor/test/smoke_suite/test_resources/simple/test.cia --- a/sbsv2/raptor/test/smoke_suite/test_resources/simple/test.cia Wed Jul 28 13:20:46 2010 +0100 +++ b/sbsv2/raptor/test/smoke_suite/test_resources/simple/test.cia Thu Aug 12 09:00:16 2010 +0100 @@ -1,5 +1,5 @@ /* -* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of the License "Eclipse Public License v1.0" @@ -16,15 +16,15 @@ */ // Some random assembler or a "straight" dummy function -#ifndef __WINSCW__ +#if defined (__WINSCW__) || defined (__X86__) +int fred(int i) + { + return 1; + } +#else EXPORT_C __NAKED__ void dummy() { asm("stmia r0, {r4-r11, sp, lr} "); asm("mov r0, #0"); } -#else -int fred(int i) - { - return 1; - } #endif