diff options
author | Brian Drummond <brian@shapes.demon.co.uk> | 2013-12-08 18:53:25 +0000 |
---|---|---|
committer | Brian Drummond <brian@shapes.demon.co.uk> | 2013-12-08 18:53:25 +0000 |
commit | 922c6333d93cf59261d9beab603b2ac5e2e19319 (patch) | |
tree | 90f7fbe48a8771f03b8e10506948b0856f9bcb29 /.gdbinit | |
parent | 04b041be9062db340a648f5ed0f0788ac25c7290 (diff) | |
download | ghdl-922c6333d93cf59261d9beab603b2ac5e2e19319.tar.gz ghdl-922c6333d93cf59261d9beab603b2ac5e2e19319.tar.bz2 ghdl-922c6333d93cf59261d9beab603b2ac5e2e19319.zip |
Patch to eliminate compile failures outputting debug information when -g -O2 options are set
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/.gdbinit b/.gdbinit deleted file mode 100644 index 950f8d954..000000000 --- a/.gdbinit +++ /dev/null @@ -1,68 +0,0 @@ -#break __gnat_raise -#break ada__exceptions__raise_exception -break __gnat_raise_nodefer_with_msg - -define pt -call disp_tree.disp_tree ($arg0, 0, 0) -end - -document pt -Print the structure of the iirs that is $arg0. -end - -define prt -set lang c -print (iirs__iir *) $ -set lang ada -end - -define pl -call disp_tree_list ($arg0, 0, 0) -end - -document pl -Print the list of iirs that is $arg0. -end - -define plf -call disp_tree_list ($arg0, 0, 1) -end - -document plf -Print flatly the list of iirs that is $arg0. -end - -define ptf -call disp_tree_flat ($arg0, 0) -end - -document ptf -Print the iirs that is $arg0. -end - -define ptf1 -call disp_tree ($, 0, 1) -end - -document ptf1 -Print the iirs that is $. -end - -define pv -call disp_value ($) -end - -document pv -Print the value that is $. -end - -define ploc -call disp_iir_location ($arg0.all) -end - -document ploc -Print the location for iir_acc $. -end - -set lang ada -#break exception |