OSDN Git Service

Add SwiftShader source to repo
[android-x86/external-swiftshader.git] / src / LLVM / lib / Target / XCore / XCoreFrameInfo.cpp
1 //===-- XCoreFrameInfo.cpp - Frame info for XCore Target ---------*- C++ -*-==//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains XCore frame information that doesn't fit anywhere else
11 // cleanly...
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "XCore.h"
16 #include "XCoreFrameInfo.h"
17 using namespace llvm;
18
19 //===----------------------------------------------------------------------===//
20 // XCoreFrameInfo:
21 //===----------------------------------------------------------------------===//
22
23 XCoreFrameInfo::XCoreFrameInfo(const TargetMachine &tm):
24   TargetFrameInfo(TargetFrameInfo::StackGrowsDown, 4, 0)
25 {
26   // Do nothing
27 }