summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-01 16:42:43 +0000
committerChris Lattner <sabre@nondot.org>2003-09-01 16:42:43 +0000
commitee81b6fae763411e67966e6a4e83cf90f67eb818 (patch)
treefa58c96eacd02661c41f4cbe25110e32c46f31ac
parent6c6ba71ceaf0869b9530d2b76536cd441231cb69 (diff)
downloadbcm5719-llvm-ee81b6fae763411e67966e6a4e83cf90f67eb818.tar.gz
bcm5719-llvm-ee81b6fae763411e67966e6a4e83cf90f67eb818.zip
This file is just a subset of Cilkifier.h
llvm-svn: 8286
-rw-r--r--llvm/include/llvm/Transforms/Parallelize.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/llvm/include/llvm/Transforms/Parallelize.h b/llvm/include/llvm/Transforms/Parallelize.h
deleted file mode 100644
index 94e49f12b54..00000000000
--- a/llvm/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
OpenPOWER on IntegriCloud