Changeset 46579c66 in mainline for test/print/print1/test.c


Ignore:
Timestamp:
2006-03-16T17:17:41Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
79aeb43b
Parents:
41fa6f2
Message:

Updated stackarg macros for mips32.
Mips32 stack aligned on 8 bytes boundary.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/print/print1/test.c

    r41fa6f2 r46579c66  
    3131void test(void)
    3232{
    33         __u64 u64const = 0x0123456789ABCDEFLL;
    3433        printf(" Printf test \n");
    35         printf(" Q  %Q  %q \n",u64const, u64const);
     34        printf(" Q  %Q  %q \n",0x1111111111111111ull, 0x2222222222222222ull);
     35        printf(" Q,l  %Q  %l \n", 0x3333333333333333ull, 0x01234567);
     36        printf(" l,Q  %l  %Q \n", 0x01234567, 0x4444444444444444ull);
    3637        printf(" L  %L  %l \n",0x01234567 ,0x01234567);   
    3738        printf(" W  %W  %w \n",0x0123 ,0x0123);   
Note: See TracChangeset for help on using the changeset viewer.