aboutsummaryrefslogtreecommitdiff
path: root/runtime/GCCLibraries/libgcc
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2007-08-21 22:40:44 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2007-08-21 22:40:44 +0000
commitb08c6db11511275eee96c48534c351e4e02b850b (patch)
tree1dec9c5319500b1ea6c36cc5ece9cbcb651caf78 /runtime/GCCLibraries/libgcc
parent0b8e02b70404302a83da6868b3ebe1b66e8e1ba8 (diff)
Dror GCCLibraries: they are obsolete since 2.0 release. This also reduces number of licenses used in LLVM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41257 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/GCCLibraries/libgcc')
-rw-r--r--runtime/GCCLibraries/libgcc/Makefile16
-rw-r--r--runtime/GCCLibraries/libgcc/eprintf.c13
2 files changed, 0 insertions, 29 deletions
diff --git a/runtime/GCCLibraries/libgcc/Makefile b/runtime/GCCLibraries/libgcc/Makefile
deleted file mode 100644
index 74b9c91f4b..0000000000
--- a/runtime/GCCLibraries/libgcc/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-##===- runtime/GCCLibraries/libgcc/Makefile ----------------*- Makefile -*-===##
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by the LLVM research group and is distributed under
-# the University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-##===----------------------------------------------------------------------===##
-
-LEVEL = ../../..
-BYTECODE_LIBRARY = 1
-DONT_BUILD_RELINKED = 1
-LIBRARYNAME = gcc
-BYTECODE_DESTINATION = $(CFERuntimeLibDir)
-
-include $(LEVEL)/Makefile.common
diff --git a/runtime/GCCLibraries/libgcc/eprintf.c b/runtime/GCCLibraries/libgcc/eprintf.c
deleted file mode 100644
index d4229fad92..0000000000
--- a/runtime/GCCLibraries/libgcc/eprintf.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <stdio.h>
-void abort(void);
-
-/* This is used by the `assert' macro. */
-void
-__eprintf (const char *string, const char *expression,
- unsigned int line, const char *filename)
-{
- fprintf (stderr, string, expression, line, filename);
- fflush (stderr);
- abort ();
-}
-