Changeset 631


Ignore:
Timestamp:
Aug 17, 2003, 8:32:33 PM (22 years ago)
Author:
bird
Message:

Complete testcase.

Location:
trunk/testcase/optlink
Files:
3 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/testcase/optlink/tst1.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r630 r631  
    1 void foo (int i1, int i2, int i3, float rf1, float rf2, float rf3, float rf4)
    2 {
    3     return;
    4 }
     1/* $Id$ */
     2/** @file
     3 *
     4 * Optlink testcase no. 1.
     5 * Passing stuff in all registers.
     6 *
     7 * InnoTek Systemberatung GmbH confidential
     8 *
     9 * Copyright (c) 2003 InnoTek Systemberatung GmbH
     10 * Author: knut st. osmundsen <bird-srcspam@anduin.net>
     11 *
     12 * All Rights Reserved
     13 *
     14 */
     15
     16/** in asm */
     17extern int _Optlink foo (int i1, int i2, int i3, float rf1, float rf2, float rf3, float rf4);
    518
    619int main()
    720{
    8     foo(1, 2, 3, 1.1, 1.2, 1.3, 1.4);
    9     return 0;
     21    int rc = foo(1, 2, 3, 1.1, 1.2, 1.3, 1.4);
     22    return rc;
    1023}
Note: See TracChangeset for help on using the changeset viewer.