Changeset d84398a7 in mainline for abi/include/abi/asmtool.h


Ignore:
Timestamp:
2016-04-12T19:17:38Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
96521f2f
Parents:
3b0f1b9a
Message:

asmtool: Use syntax understood by all architectures' assemblers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • abi/include/abi/asmtool.h

    r3b0f1b9a rd84398a7  
    4545
    4646#define OBJECT_BEGIN(obj) \
    47         .type obj, @object; \
     47        .type obj STT_OBJECT; \
    4848        SYMBOL_BEGIN(obj)
    4949#define OBJECT_END(obj) \
     
    5151
    5252#define FUNCTION_BEGIN(func) \
    53         .type func, @function; \
     53        .type func STT_FUNC; \
    5454        SYMBOL_BEGIN(func)     
    5555#define FUNCTION_END(func) \
Note: See TracChangeset for help on using the changeset viewer.