diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2011-11-14 18:12:24 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2011-11-14 10:12:24 -0800 |
commit | 2841f85e9c51a9ef0a81e23b57aedf76ad39621e (patch) | |
tree | 4cd96dd8d0702914ae62830d2443ec2231c398b6 /libitm | |
parent | 557831a91df947b447fc9fd94ecad02470a3c86a (diff) | |
download | gcc-2841f85e9c51a9ef0a81e23b57aedf76ad39621e.zip gcc-2841f85e9c51a9ef0a81e23b57aedf76ad39621e.tar.gz gcc-2841f85e9c51a9ef0a81e23b57aedf76ad39621e.tar.bz2 |
Check ia32 instead of ilp32.
2011-11-14 H.J. Lu <hongjiu.lu@intel.com>
* testsuite/lib/libitm.exp: Check ia32 instead of ilp32.
From-SVN: r181360
Diffstat (limited to 'libitm')
-rw-r--r-- | libitm/ChangeLog | 4 | ||||
-rw-r--r-- | libitm/testsuite/lib/libitm.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libitm/ChangeLog b/libitm/ChangeLog index 46c984e..b01b24d 100644 --- a/libitm/ChangeLog +++ b/libitm/ChangeLog @@ -1,3 +1,7 @@ +2011-11-14 H.J. Lu <hongjiu.lu@intel.com> + + * testsuite/lib/libitm.exp: Check ia32 instead of ilp32. + 2011-11-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * config/alpha/sjlj.S (_ITM_beginTransaction) [!__ELF__]: Don't use diff --git a/libitm/testsuite/lib/libitm.exp b/libitm/testsuite/lib/libitm.exp index 701120a..74f7f80 100644 --- a/libitm/testsuite/lib/libitm.exp +++ b/libitm/testsuite/lib/libitm.exp @@ -144,7 +144,7 @@ proc libitm_init { args } { # We use atomic operations in the testcases to validate results. if { ([istarget i?86-*-*] || [istarget x86_64-*-*]) - && [check_effective_target_ilp32] } { + && [check_effective_target_ia32] } { lappend ALWAYS_CFLAGS "additional_flags=-march=i486" } |