diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-07 18:41:59 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-07 18:41:59 +0000 |
commit | c20beb9cc5a8bf72ffe6aada664c09d6c702ca01 (patch) | |
tree | 66f1dda57b0a5b4a983ccf1642d6b573f77df355 /lib/Support/Alarm.cpp | |
parent | 12ccf67457cddc7841bd23bae342994a21d25eb0 (diff) |
Support: Remove Alarm. It is unused (via local grep and google code search).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121160 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Alarm.cpp')
-rw-r--r-- | lib/Support/Alarm.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/Support/Alarm.cpp b/lib/Support/Alarm.cpp deleted file mode 100644 index 58ad609cd2..0000000000 --- a/lib/Support/Alarm.cpp +++ /dev/null @@ -1,33 +0,0 @@ -//===- Alarm.cpp - Alarm Generation Support ---------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file implements the Alarm functionality -// -//===----------------------------------------------------------------------===// - -#include "llvm/Support/Alarm.h" -#include "llvm/Config/config.h" - -namespace llvm { -using namespace sys; - -//===----------------------------------------------------------------------===// -//=== WARNING: Implementation here must contain only TRULY operating system -//=== independent code. -//===----------------------------------------------------------------------===// - -} - -// Include the platform-specific parts of this class. -#ifdef LLVM_ON_UNIX -#include "Unix/Alarm.inc" -#endif -#ifdef LLVM_ON_WIN32 -#include "Windows/Alarm.inc" -#endif |