Move Blackfin intrinsics into the Target/Blackfin directory.
[oota-llvm.git] / lib / Target / Blackfin / BlackfinIntrinsicInfo.h
1 //===- BlackfinIntrinsicInfo.h - Blackfin Intrinsic Information -*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the Blackfin implementation of TargetIntrinsicInfo.
11 //
12 //===----------------------------------------------------------------------===//
13 #ifndef BLACKFININTRINSICS_H
14 #define BLACKFININTRINSICS_H
15
16 #include "llvm/Target/TargetIntrinsicInfo.h"
17
18 namespace llvm {
19
20   class BlackfinIntrinsicInfo : public TargetIntrinsicInfo {
21   public:
22     const char *getName(unsigned IntrID) const;
23     unsigned lookupName(const char *Name, unsigned Len) const;
24   };
25
26 }
27
28 #endif