2011-08-29 Arnaud Charlet <charlet@adacore.com>
* exp_ch3.adb (In_Runtime): Fix typo.
From-SVN: r178171
+2011-08-29 Arnaud Charlet <charlet@adacore.com>
+
+ * exp_ch3.adb (In_Runtime): Fix typo.
+
2011-08-29 Bob Duff <duff@adacore.com>
* sem_ch4.adb (Analyze_Allocator): Analyze the subpool specification.
S1 := Scope (S1);
end loop;
- return Is_RTU (S1, RU_System) or else Is_RTU (S1, RU_Ada);
+ return Chars (S1) = Name_System or else Chars (S1) = Name_Ada;
end In_Runtime;
----------------------------