diff options
author | Étienne Barrié <[email protected]> | 2025-03-27 16:46:30 +0100 |
---|---|---|
committer | Jean Boussier <[email protected]> | 2025-03-28 17:36:24 +0100 |
commit | 332f5d0b73cffb07c3e0002d31cc2c5d1b3fac1c () | |
tree | 9223577729f5a0e6406f4c42c90a725af8ee8eb0 /.gdbinit | |
parent | 3aee7b982b283d2355c249b863d4f3570c929e26 (diff) |
Remove RUBY_FL_PROMOTED{0,1} from debugger scripts
These flags were removed in d426343418aab6148706860bd1678ac309dc12c0 and print_flags is broken because of it.
Notes: Merged: https://.com/ruby/ruby/pull/13006
-rw-r--r-- | .gdbinit | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1296,8 +1296,7 @@ end define print_flags printf "RUBY_FL_WB_PROTECTED: %s\n", ((struct RBasic*)($arg0))->flags & RUBY_FL_WB_PROTECTED ? "1" : "0" - printf "RUBY_FL_PROMOTED0 : %s\n", ((struct RBasic*)($arg0))->flags & RUBY_FL_PROMOTED0 ? "1" : "0" - printf "RUBY_FL_PROMOTED1 : %s\n", ((struct RBasic*)($arg0))->flags & RUBY_FL_PROMOTED1 ? "1" : "0" printf "RUBY_FL_FINALIZE : %s\n", ((struct RBasic*)($arg0))->flags & RUBY_FL_FINALIZE ? "1" : "0" printf "RUBY_FL_SHAREABLE : %s\n", ((struct RBasic*)($arg0))->flags & RUBY_FL_SHAREABLE ? "1" : "0" printf "RUBY_FL_EXIVAR : %s\n", ((struct RBasic*)($arg0))->flags & RUBY_FL_EXIVAR ? "1" : "0" |