blob: 9507ff9e59ea35e518c2a9c6c7cd6387dc2869d5 [file] [log] [blame]
Chris Lattner4ee451d2007-12-29 20:36:04 +00001//===-- SPUTargetAsmInfo.h - Cell SPU asm properties -----------*- C++ -*--===//
Scott Michel564427e2007-12-05 01:24:05 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Michel564427e2007-12-05 01:24:05 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the declaration of the SPUTargetAsmInfo class.
11//
12//===----------------------------------------------------------------------===//
13
Scott Micheld03eeaf2008-11-07 04:36:25 +000014#ifndef SPUTARGETASMINFO_H
15#define SPUTARGETASMINFO_H
Scott Michel564427e2007-12-05 01:24:05 +000016
17#include "llvm/Target/TargetAsmInfo.h"
18
19namespace llvm {
20
Chris Lattner09e820b2009-08-02 04:44:33 +000021 struct SPULinuxTargetAsmInfo : public TargetAsmInfo {
22 explicit SPULinuxTargetAsmInfo();
Scott Micheld03eeaf2008-11-07 04:36:25 +000023 };
Scott Michel564427e2007-12-05 01:24:05 +000024} // namespace llvm
25
Scott Micheld03eeaf2008-11-07 04:36:25 +000026#endif /* SPUTARGETASMINFO_H */