Commit b4311214 by Robert Dewar Committed by Arnaud Charlet

sem_ch6.adb (Process_PPCs): Don't copy spec PPC to body if not generating code

2008-08-01  Robert Dewar  <dewar@adacore.com>

	* sem_ch6.adb (Process_PPCs): Don't copy spec PPC to body if not
	generating code

From-SVN: r138485
parent d1b4f87d
......@@ -7775,6 +7775,12 @@ package body Sem_Ch6 is
-- Start of processing for Process_PPCs
begin
-- Nothing to do if we are not generating code
if Operating_Mode /= Generate_Code then
return;
end if;
-- Grab preconditions from spec
if Present (Spec_Id) then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment