aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Blackfin/BlackfinIntrinsicInfo.h
blob: 3b59a603ba74c5fadbf0473f319bb90c18db233f (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
//===- BlackfinIntrinsicInfo.h - Blackfin Intrinsic Information -*- 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 Blackfin implementation of TargetIntrinsicInfo.
//
//===----------------------------------------------------------------------===//
#ifndef BLACKFININTRINSICS_H
#define BLACKFININTRINSICS_H

#include "llvm/Target/TargetIntrinsicInfo.h"

namespace llvm {

  class BlackfinIntrinsicInfo : public TargetIntrinsicInfo {
  public:
    const char *getName(unsigned IntrID) const;
    unsigned lookupName(const char *Name, unsigned Len) const;
  };

}

#endif