summaryrefslogtreecommitdiff
path: root/include/llvm/Target/TargetIntrinsicInfo.h
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2009-02-04 22:47:25 +0000
committerDale Johannesen <dalej@apple.com>2009-02-04 22:47:25 +0000
commit4d452de1506344bf1d28bb4a8c4ddb78c51a28c8 (patch)
tree5b7644cb0658d094afb0caa658d7fb266d6a88c6 /include/llvm/Target/TargetIntrinsicInfo.h
parentd0a203d76f4ef77ae1c392e8e73e2f05b676a5f2 (diff)
downloadllvm-4d452de1506344bf1d28bb4a8c4ddb78c51a28c8.tar.gz
llvm-4d452de1506344bf1d28bb4a8c4ddb78c51a28c8.tar.bz2
llvm-4d452de1506344bf1d28bb4a8c4ddb78c51a28c8.tar.xz
Reverting 63765. This broke the build of both clang
and llvm-gcc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63786 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetIntrinsicInfo.h')
-rw-r--r--include/llvm/Target/TargetIntrinsicInfo.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/include/llvm/Target/TargetIntrinsicInfo.h b/include/llvm/Target/TargetIntrinsicInfo.h
index 323e29afee..e69de29bb2 100644
--- a/include/llvm/Target/TargetIntrinsicInfo.h
+++ b/include/llvm/Target/TargetIntrinsicInfo.h
@@ -1,48 +0,0 @@
-//===-- llvm/Target/TargetIntrinsicInfo.h - Instruction Info ----*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file describes the target intrinsic instructions to the code generator.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_TARGET_TARGETINTRINSICINFO_H
-#define LLVM_TARGET_TARGETINTRINSICINFO_H
-
-namespace llvm {
-
-class Function;
-class Module;
-
-//---------------------------------------------------------------------------
-///
-/// TargetIntrinsicInfo - Interface to description of machine instruction set
-///
-class TargetIntrinsicInfo {
-
- const char **Intrinsics; // Raw array to allow static init'n
- unsigned NumIntrinsics; // Number of entries in the desc array
-
- TargetIntrinsicInfo(const TargetIntrinsicInfo &); // DO NOT IMPLEMENT
- void operator=(const TargetIntrinsicInfo &); // DO NOT IMPLEMENT
-public:
- TargetIntrinsicInfo(const char **desc, unsigned num);
- virtual ~TargetIntrinsicInfo();
-
- unsigned getNumIntrinsics() const { return NumIntrinsics; }
-
- virtual Function *getDeclaration(Module *M, const char *BuiltinName) const {
- return 0;
- }
-
- virtual unsigned getIntrinsicID(Function *F) const { return 0; }
-};
-
-} // End llvm namespace
-
-#endif