1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/lib/Support/IRReader.cpp
2013-03-20 17:00:25 +00:00

22 lines
766 B
C++

//===- 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"));