diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2016-03-21 16:31:50 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2016-03-21 16:31:50 +0100 |
commit | c600d691f3b8151c76612984215983d852c3d903 (patch) | |
tree | 8a3c7747ea1c88aa39d07ad6b0118b0eada343e8 | |
parent | 2fac8c142e92dfaed2aa561b1673a26c1fff061f (diff) | |
download | gcc-c600d691f3b8151c76612984215983d852c3d903.zip gcc-c600d691f3b8151c76612984215983d852c3d903.tar.gz gcc-c600d691f3b8151c76612984215983d852c3d903.tar.bz2 |
[nvptx] Don't emit sorry for the stabs debug format
* config/nvptx/nvptx.c (nvptx_option_override): Don't emit sorry
for the stabs debug format.
Co-Authored-By: Alexander Monakov <amonakov@ispras.ru>
From-SVN: r234370
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/nvptx/nvptx.c | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fc480c7..b45acc5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2016-03-21 Thomas Schwinge <thomas@codesourcery.com> + Alexander Monakov <amonakov@ispras.ru> + + * config/nvptx/nvptx.c (nvptx_option_override): Don't emit sorry + for the stabs debug format. + 2016-03-21 Richard Biener <rguenther@suse.de> PR tree-optimization/70310 diff --git a/gcc/config/nvptx/nvptx.c b/gcc/config/nvptx/nvptx.c index 1672426..b088cf8 100644 --- a/gcc/config/nvptx/nvptx.c +++ b/gcc/config/nvptx/nvptx.c @@ -160,10 +160,6 @@ nvptx_option_override (void) /* Assumes that it will see only hard registers. */ flag_var_tracking = 0; - if (write_symbols == DBX_DEBUG) - /* The stabs testcases want to know stabs isn't supported. */ - sorry ("stabs debug format not supported"); - if (nvptx_optimize < 0) nvptx_optimize = optimize > 0; |