diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-27 06:15:14 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-27 06:15:14 +0000 |
commit | 0d1ad6ac3479ec6c3cd22471a27af588db151fb3 (patch) | |
tree | fa2d749c6a2b0b211689853be913cda8ec2bed24 /llvm/lib/System/Win32 | |
parent | b668158b7c5ffe24f7341f5dde0d275d31661e18 (diff) | |
download | bcm5719-llvm-0d1ad6ac3479ec6c3cd22471a27af588db151fb3.tar.gz bcm5719-llvm-0d1ad6ac3479ec6c3cd22471a27af588db151fb3.zip |
For PR351:
SysConf abstraction was pointless because it had a single function in it that
pertained only to the current process. So merge it into the Process abstraction
and remove the files completely.
llvm-svn: 19149
Diffstat (limited to 'llvm/lib/System/Win32')
-rw-r--r-- | llvm/lib/System/Win32/SysConfig.cpp | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/llvm/lib/System/Win32/SysConfig.cpp b/llvm/lib/System/Win32/SysConfig.cpp deleted file mode 100644 index 66a463ba934..00000000000 --- a/llvm/lib/System/Win32/SysConfig.cpp +++ /dev/null @@ -1,27 +0,0 @@ -//===- Win32/SysConfig.cpp - Win32 System Configuration ---------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file was developed by Jeff Cohen and is distributed under the -// University of Illinois Open Source License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file defines some functions for managing system configuration on Win32. -// -//===----------------------------------------------------------------------===// - -namespace llvm { - -// Some LLVM programs such as bugpoint produce core files as a normal part of -// their operation. To prevent the disk from filling up, this configuration item -// does what's necessary to prevent their generation. -void sys::PreventCoreFiles() { - // Windows doesn't do core files, so nothing to do. - // Although... it might be nice to prevent the do-you-want-to-debug - // dialog box from coming up. Or maybe not... -} - -} - -// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab |