aboutsummaryrefslogtreecommitdiff
path: root/gcc/langhooks.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r--gcc/langhooks.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c
index daf34e0fa1f..b8791e52b3a 100644
--- a/gcc/langhooks.c
+++ b/gcc/langhooks.c
@@ -34,6 +34,8 @@ Boston, MA 02111-1307, USA. */
#include "flags.h"
#include "langhooks.h"
#include "langhooks-def.h"
+/* APPLE LOCAL 4133801 */
+#include "debug.h"
#include "ggc.h"
#include "diagnostic.h"
@@ -560,3 +562,17 @@ lhd_to_target_charset (HOST_WIDE_INT c)
{
return c;
}
+
+/* APPLE LOCAL begin 4133801 */
+void
+lhd_start_source_file (int n, const char *s)
+{
+ (*debug_hooks->start_source_file) (n, s);
+}
+
+void
+lhd_end_source_file (int n, const char *s ATTRIBUTE_UNUSED)
+{
+ (*debug_hooks->end_source_file) (n);
+}
+/* APPLE LOCAL end 4133801 */