blob: 8d75ea84116a506240e1dd6c2c3d3405c141e8e8 [file] [log] [blame]
Chris Lattner621c44d2009-08-22 20:48:53 +00001//===-- SPUMCAsmInfo.h - Cell SPU asm properties ---------------*- C++ -*--===//
Scott Michel5c93da42007-12-05 01:24:05 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Scott Michel5c93da42007-12-05 01:24:05 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner621c44d2009-08-22 20:48:53 +000010// This file contains the declaration of the SPUMCAsmInfo class.
Scott Michel5c93da42007-12-05 01:24:05 +000011//
12//===----------------------------------------------------------------------===//
13
Scott Michel1e5a4ba2008-11-07 04:36:25 +000014#ifndef SPUTARGETASMINFO_H
15#define SPUTARGETASMINFO_H
Scott Michel5c93da42007-12-05 01:24:05 +000016
Chris Lattner621c44d2009-08-22 20:48:53 +000017#include "llvm/MC/MCAsmInfo.h"
Scott Michel5c93da42007-12-05 01:24:05 +000018
19namespace llvm {
Chris Lattnerd88f9fd2009-08-12 07:22:17 +000020 class Target;
21 class StringRef;
22
Chris Lattner621c44d2009-08-22 20:48:53 +000023 struct SPULinuxMCAsmInfo : public MCAsmInfo {
24 explicit SPULinuxMCAsmInfo(const Target &T, const StringRef &TT);
Scott Michel1e5a4ba2008-11-07 04:36:25 +000025 };
Scott Michel5c93da42007-12-05 01:24:05 +000026} // namespace llvm
27
Scott Michel1e5a4ba2008-11-07 04:36:25 +000028#endif /* SPUTARGETASMINFO_H */