mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
0f9b8503de
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177543 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
766 B
C++
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"));
|
|
|