llvm-6502/utils/TableGen/DAGISelMatcherOpt.cpp

20 lines
608 B
C++
Raw Normal View History

//===- DAGISelMatcherOpt.cpp - Optimize a DAG Matcher ---------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the DAG Matcher optimizer.
//
//===----------------------------------------------------------------------===//
#include "DAGISelMatcher.h"
using namespace llvm;
void llvm::OptimizeMatcher(const MatcherNode *Matcher) {
// Nothing yet.
}