From b50b8b1acc655ecd8e930a343f8d8f9a86983183 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 1 Sep 2003 16:42:43 +0000 Subject: [PATCH] This file is just a subset of Cilkifier.h git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8286 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Transforms/Parallelize.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 include/llvm/Transforms/Parallelize.h diff --git a/include/llvm/Transforms/Parallelize.h b/include/llvm/Transforms/Parallelize.h deleted file mode 100644 index 94e49f12b54..00000000000 --- a/include/llvm/Transforms/Parallelize.h +++ /dev/null @@ -1,26 +0,0 @@ -//===- Parallelize.h - Auto parallelization using DS Graphs -----*- C++ -*-===// -// -// Externally visible routines related to the IPO pass Parallelize in -// lib/Transforms/IPO/Parallelize.cpp. That pass automatically parallelizes -// a program using the Cilk multi-threaded runtime system to execute -// parallel code. The routines here are used only to identify functions -// marked as Cilk operations. -//===----------------------------------------------------------------------===// - -#ifndef LLVM_TRANSFORMS_PARALLELIZE_H -#define LLVM_TRANSFORMS_PARALLELIZE_H - -class Function; -class CallInst; - -//---------------------------------------------------------------------------- -// Routines to identify Cilk functions, calls to Cilk functions, and syncs. -//---------------------------------------------------------------------------- - -extern bool isCilk(const Function& F); -extern bool isCilk(const CallInst& CI); -extern bool isSync(const CallInst& CI); - -//===----------------------------------------------------------------------===// - -#endif -- 2.34.1