summaryrefslogtreecommitdiff
path: root/lib/Target/Blackfin/BlackfinTargetAsmInfo.h
blob: 8040f0fb21286953c124c0cd6a51c4d4acb57325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//===-- BlackfinTargetAsmInfo.h - Blackfin 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 BlackfinTargetAsmInfo class.
//
//===----------------------------------------------------------------------===//

#ifndef BLACKFINTARGETASMINFO_H
#define BLACKFINTARGETASMINFO_H

#include "llvm/Target/TargetAsmInfo.h"

namespace llvm {
  class Target;
  class StringRef;

  struct BlackfinTargetAsmInfo : public TargetAsmInfo {
    explicit BlackfinTargetAsmInfo(const Target &T, const StringRef &TT);
  };

} // namespace llvm

#endif