Changeset a4fb8d60 in mainline for kernel/test/print/print2.c


Ignore:
Timestamp:
2017-10-10T18:58:49Z (7 years ago)
Author:
jzr <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
04ba110
Parents:
33f86a3
Message:

Kill U/INTN_C().

It's only used in one place and its practical usefulness is nonexistent.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/test/print/print2.c

    r33f86a3 ra4fb8d60  
    6262        TPRINTF("Real output:     [%td] [%tu] [%tx] [%ti] [%to]\n\n", d, neg_d, neg_d, d, neg_d);
    6363       
    64         sysarg_t nat = UINTN_C(0x12345678);
     64        sysarg_t nat = 0x12345678;
    6565       
    6666        TPRINTF("Testing printf(\"%%#" PRIx64 " %%#" PRIx32 " %%#" PRIx16 " %%#" PRIx8 " %%#" PRIxn " %%#" PRIx64 " %%s\", (uint64_t) UINT64_C(0x1234567887654321), (uint32_t) UINT32_C(0x12345678), (uint16_t) UINT16_C(0x1234), (uint8_t) UINT8_C(0x12), nat, (uint64_t) UINT64_C(0x1234567887654321), \"Lovely string\"):\n");
Note: See TracChangeset for help on using the changeset viewer.