diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2012-01-23 15:57:44 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2012-01-23 15:57:44 +0100 |
commit | 5752c591bce9d19e117c3107072b121d3ac529df (patch) | |
tree | aea413a283800e7980e1cb2190d09e87b8614f13 /gcc/gtm-builtins.def | |
parent | 9dcc9b3b01f3bb19bf88f88ff3428c187c75ceb7 (diff) | |
download | gcc-5752c591bce9d19e117c3107072b121d3ac529df.tar.gz |
re PR libitm/51830 (FAIL: libitm.c/mem(cpy|set)-1.c execution test)
PR libitm/51830
* builtin-types.def (BT_FN_UINT_UINT_VAR): New.
* gtm-builtins.def (BUILT_IN_TM_START): Declare as BT_FN_UINT_UINT_VAR.
libitm/ChangeLog:
PR libitm/51830
* config/x86/sjlj.S (_ITM_beginTransaction) [!__x86_64__]: Load
the first function argument to %eax.
From-SVN: r183435
Diffstat (limited to 'gcc/gtm-builtins.def')
-rw-r--r-- | gcc/gtm-builtins.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gtm-builtins.def b/gcc/gtm-builtins.def index 1630a0e96a6..77b320c99e4 100644 --- a/gcc/gtm-builtins.def +++ b/gcc/gtm-builtins.def @@ -1,5 +1,5 @@ DEF_TM_BUILTIN (BUILT_IN_TM_START, "_ITM_beginTransaction", - BT_FN_UINT_UINT, ATTR_TM_NOTHROW_RT_LIST) + BT_FN_UINT_UINT_VAR, ATTR_TM_NOTHROW_RT_LIST) DEF_TM_BUILTIN (BUILT_IN_TM_COMMIT, "_ITM_commitTransaction", BT_FN_VOID, ATTR_TM_NOTHROW_LIST) |