blob: 8d75ea84116a506240e1dd6c2c3d3405c141e8e8 [file] [log] [blame]
Chris Lattner7b26fce2009-08-22 20:48:53 +00001//===-- SPUMCAsmInfo.h - Cell SPU asm properties ---------------*- C++ -*--===//
Scott Micheleff98022007-12-05 01:24:05 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Micheleff98022007-12-05 01:24:05 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner7b26fce2009-08-22 20:48:53 +000010// This file contains the declaration of the SPUMCAsmInfo class.
Scott Micheleff98022007-12-05 01:24:05 +000011//
12//===----------------------------------------------------------------------===//
13
Scott Michel34d93f82008-11-07 04:36:25 +000014#ifndef SPUTARGETASMINFO_H
15#define SPUTARGETASMINFO_H
Scott Micheleff98022007-12-05 01:24:05 +000016
Chris Lattner7b26fce2009-08-22 20:48:53 +000017#include "llvm/MC/MCAsmInfo.h"
Scott Micheleff98022007-12-05 01:24:05 +000018
19namespace llvm {
Chris Lattner9a6cf912009-08-12 07:22:17 +000020 class Target;
21 class StringRef;
22
Chris Lattner7b26fce2009-08-22 20:48:53 +000023 struct SPULinuxMCAsmInfo : public MCAsmInfo {
24 explicit SPULinuxMCAsmInfo(const Target &T, const StringRef &TT);
Scott Michel34d93f82008-11-07 04:36:25 +000025 };
Scott Micheleff98022007-12-05 01:24:05 +000026} // namespace llvm
27
Scott Michel34d93f82008-11-07 04:36:25 +000028#endif /* SPUTARGETASMINFO_H */