2007-12-29 20:36:04 +00:00
|
|
|
//===-- SPUTargetAsmInfo.h - Cell SPU asm properties -----------*- C++ -*--===//
|
2007-12-05 01:24:05 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-12-05 01:24:05 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declaration of the SPUTargetAsmInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-11-07 04:36:25 +00:00
|
|
|
#ifndef SPUTARGETASMINFO_H
|
|
|
|
#define SPUTARGETASMINFO_H
|
2007-12-05 01:24:05 +00:00
|
|
|
|
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2009-08-02 04:44:33 +00:00
|
|
|
struct SPULinuxTargetAsmInfo : public TargetAsmInfo {
|
|
|
|
explicit SPULinuxTargetAsmInfo();
|
2007-12-05 01:24:05 +00:00
|
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
|
2008-11-07 04:36:25 +00:00
|
|
|
#endif /* SPUTARGETASMINFO_H */
|