diff options
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/CMakeLists.txt | 1 | ||||
-rw-r--r-- | lib/Support/IRReader.cpp | 21 |
2 files changed, 0 insertions, 22 deletions
diff --git a/lib/Support/CMakeLists.txt b/lib/Support/CMakeLists.txt index f661249..5ba69fc 100644 --- a/lib/Support/CMakeLists.txt +++ b/lib/Support/CMakeLists.txt @@ -27,7 +27,6 @@ add_llvm_library(LLVMSupport IntEqClasses.cpp IntervalMap.cpp IntrusiveRefCntPtr.cpp - IRReader.cpp IsInf.cpp IsNAN.cpp Locale.cpp diff --git a/lib/Support/IRReader.cpp b/lib/Support/IRReader.cpp deleted file mode 100644 index 1dc56dd..0000000 --- a/lib/Support/IRReader.cpp +++ /dev/null @@ -1,21 +0,0 @@ -//===- IRReader.cpp - Reader for LLVM IR files ----------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "llvm/Support/CommandLine.h" -#include "llvm/Support/IRReader.h" -using namespace llvm; - -const char *llvm::TimeIRParsingGroupName = "LLVM IR Parsing"; -const char *llvm::TimeIRParsingName = "Parse IR"; - -bool llvm::TimeIRParsingIsEnabled = false; -static cl::opt<bool,true> -EnableTimeIRParsing("time-ir-parsing", cl::location(TimeIRParsingIsEnabled), - cl::desc("Measure the time IR parsing takes")); - |