blob: 96a53892f6d3839a7c182b024a5ca7c5a907d4c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//===-- llvm/CodeGen/JITCodeEmitter.cpp - Code emission --------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "llvm/CodeGen/JITCodeEmitter.h"
using namespace llvm;
void JITCodeEmitter::anchor() { }
|