mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
6ad8c84d70
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84194 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
823 B
C++
29 lines
823 B
C++
//===- 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
|