2010-02-23 19:15:24 +00:00
|
|
|
//=====-- MBlazeMCAsmInfo.h - MBlaze asm properties -----------*- C++ -*--====//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declaration of the MBlazeMCAsmInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef MBLAZETARGETASMINFO_H
|
|
|
|
#define MBLAZETARGETASMINFO_H
|
|
|
|
|
2010-07-14 22:38:02 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2010-02-23 19:15:24 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class Target;
|
2010-11-08 19:40:01 +00:00
|
|
|
|
2010-02-23 19:15:24 +00:00
|
|
|
class MBlazeMCAsmInfo : public MCAsmInfo {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2010-02-23 19:15:24 +00:00
|
|
|
public:
|
2010-10-27 00:23:01 +00:00
|
|
|
explicit MBlazeMCAsmInfo();
|
2010-02-23 19:15:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|