Changeset 054476d in mainline for abi/include/abi/asmtool.h


Ignore:
Timestamp:
2016-04-21T20:04:16Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
27f67f5
Parents:
dc0d8b52 (diff), 73b3ecd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge arm32 switch over to using asmtool.h macros

File:
1 edited

Legend:

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

    rdc0d8b52 r054476d  
    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.