aboutsummaryrefslogtreecommitdiff
path: root/libitm/config/x86
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2012-04-04 15:49:23 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2012-04-04 08:49:23 -0700
commit0100e3b3e80de132fbef4e573d3701ed5150b084 (patch)
tree987c76c91ffc1c75d7304e17a02473d3a1a44d2f /libitm/config/x86
parent6f6e1e9e8b306bdc76fbd7268583c180b1e32046 (diff)
downloadgcc-0100e3b3e80de132fbef4e573d3701ed5150b084.zip
gcc-0100e3b3e80de132fbef4e573d3701ed5150b084.tar.gz
gcc-0100e3b3e80de132fbef4e573d3701ed5150b084.tar.bz2
Use long long in gtm_jmpbuf for x86-64
2012-04-04 H.J. Lu <hongjiu.lu@intel.com> PR libitm/52854 * config/x86/target.h (gtm_jmpbuf): Replace long with long long for x86-64. From-SVN: r186140
Diffstat (limited to 'libitm/config/x86')
-rw-r--r--libitm/config/x86/target.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libitm/config/x86/target.h b/libitm/config/x86/target.h
index 1d81a47..5c7e6fb 100644
--- a/libitm/config/x86/target.h
+++ b/libitm/config/x86/target.h
@@ -29,13 +29,13 @@ namespace GTM HIDDEN {
typedef struct gtm_jmpbuf
{
void *cfa;
- unsigned long rbx;
- unsigned long rbp;
- unsigned long r12;
- unsigned long r13;
- unsigned long r14;
- unsigned long r15;
- unsigned long rip;
+ unsigned long long rbx;
+ unsigned long long rbp;
+ unsigned long long r12;
+ unsigned long long r13;
+ unsigned long long r14;
+ unsigned long long r15;
+ unsigned long long rip;
} gtm_jmpbuf;
#else
typedef struct gtm_jmpbuf