forked from OSchip/llvm-project
21 lines
582 B
C++
21 lines
582 B
C++
//===- FronendTiming.cpp - Implements Frontend timing utils --------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file keps implementation of frontend timing utils.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Frontend/Utils.h"
|
|
|
|
namespace clang {
|
|
|
|
bool FrontendTimesIsEnabled = false;
|
|
|
|
}
|