diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-06 20:28:03 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-06 20:28:03 +0000 |
commit | 5bbb752620f31485a5207bdfc7100fcabb5643a0 (patch) | |
tree | ccf7e525ab8102463220a434542d743254c656ae /gcc/gdbinit.in | |
parent | eb0f2332e93d3196642513676c38b5667c82dddc (diff) | |
download | gcc-5bbb752620f31485a5207bdfc7100fcabb5643a0.tar.gz |
* gdbinit.in: Disable strict type checking.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@204474 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gdbinit.in')
-rw-r--r-- | gcc/gdbinit.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/gdbinit.in b/gcc/gdbinit.in index 503ef24e301..c60cab1df2d 100644 --- a/gcc/gdbinit.in +++ b/gcc/gdbinit.in @@ -205,6 +205,11 @@ set complaints 0 b exit b abort +# Disable strict type checking. This allows developers to (for example) +# make inferior calls without casting absolute address to a suitable +# pointer type. +set check type off + # Skip all inline functions in tree.h. # These are used in accessor macros. # Note that this is added at the end because older gdb versions |