2009-08-22 20:48:53 +00:00
|
|
|
//===-- BlackfinMCAsmInfo.h - Blackfin asm properties ---------*- C++ -*--====//
|
2009-08-02 17:32:10 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 20:48:53 +00:00
|
|
|
// This file contains the declaration of the BlackfinMCAsmInfo class.
|
2009-08-02 17:32:10 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef BLACKFINTARGETASMINFO_H
|
|
|
|
#define BLACKFINTARGETASMINFO_H
|
|
|
|
|
2010-07-14 22:38:02 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-08-02 17:32:10 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-12 07:22:17 +00:00
|
|
|
class Target;
|
2009-08-02 17:32:10 +00:00
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
struct BlackfinMCAsmInfo : public MCAsmInfo {
|
2010-07-14 22:38:02 +00:00
|
|
|
explicit BlackfinMCAsmInfo(const Target &T, StringRef TT);
|
2009-08-02 17:32:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|