2009-08-22 22:48:53 +02:00
|
|
|
//=====-- AlphaMCAsmInfo.h - Alpha asm properties -------------*- C++ -*--====//
|
2006-09-08 00:05:02 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-08 00:05:02 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 22:48:53 +02:00
|
|
|
// This file contains the declaration of the AlphaMCAsmInfo class.
|
2006-09-08 00:05:02 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef ALPHATARGETASMINFO_H
|
|
|
|
#define ALPHATARGETASMINFO_H
|
|
|
|
|
2010-07-15 00:38:02 +02:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2009-08-22 22:48:53 +02:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2006-09-08 00:05:02 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-12 09:22:17 +02:00
|
|
|
class Target;
|
2006-09-08 00:05:02 +02:00
|
|
|
|
2009-08-22 22:48:53 +02:00
|
|
|
struct AlphaMCAsmInfo : public MCAsmInfo {
|
2010-07-15 00:38:02 +02:00
|
|
|
explicit AlphaMCAsmInfo(const Target &T, StringRef TT);
|
2006-09-08 00:05:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|