• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

修訂cc69bfc1228f165886521e1c0ad8880e7a11e1af (tree)
時間2008-09-06 02:39:00
作者Paul Pluzhnikov <ppluzhnikov@goog...>
CommiterPaul Pluzhnikov

Log Message

compile with gcc -fno-inline, lest gcc-4.3.1 optimizes the whole thing away.

Change Summary

差異

--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
1+2008-09-05 Paul Pluzhnikov <ppluzhnikov@google.com>
2+
3+ *gdb.base/mips_pro.exp: compile with gcc -fno-inline,
4+ lest gcc-4.3.1 optimizes the whole thing away.
5+
16 2008-09-04 Michael Snyder <msnyder@vmware.com>
27
38 * lib/gdb.exp (gdb_continue_to_breakpoint): Accept "in" as well
--- a/gdb/testsuite/gdb.base/mips_pro.exp
+++ b/gdb/testsuite/gdb.base/mips_pro.exp
@@ -35,7 +35,8 @@ if [get_compiler_info ${binfile}] {
3535 # This test must be compiled with -O2 if using gcc.
3636
3737 if { [test_compiler_info gcc-*-*] } then {
38- if { [gdb_compile "${srcdir}/$subdir/${srcfile}" "${binfile}" executable {debug additional_flags=-O2}] != "" } {
38+ if { [gdb_compile "${srcdir}/$subdir/${srcfile}" "${binfile}" \
39+ executable {debug additional_flags=-O2 additional_flags=-fno-inline}] != "" } {
3940 untested mips_pro.exp
4041 return -1
4142 }