summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2014-04-24 18:27:29 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2014-04-24 18:27:29 +0000
commit778aacb5a341fc8535025e3f86bc73630010672f (patch)
treea78d5291184e5a363ff41fe0f500c16563768f35 /include
parentf28f471f1600d3226f6ac96e7d3b8fa27344d11f (diff)
downloadllvm-778aacb5a341fc8535025e3f86bc73630010672f.tar.gz
llvm-778aacb5a341fc8535025e3f86bc73630010672f.tar.bz2
llvm-778aacb5a341fc8535025e3f86bc73630010672f.tar.xz
[modules] "Specialize" a function by actually specializing a function template
rather than by adding an overload and hoping that it's declared before the code that calls it. (In a modules build, it isn't.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207133 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/EdgeBundles.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/EdgeBundles.h b/include/llvm/CodeGen/EdgeBundles.h
index 2899fe1ab4..c31fad246c 100644
--- a/include/llvm/CodeGen/EdgeBundles.h
+++ b/include/llvm/CodeGen/EdgeBundles.h
@@ -59,11 +59,6 @@ private:
void getAnalysisUsage(AnalysisUsage&) const override;
};
-/// Specialize WriteGraph, the standard implementation won't work.
-raw_ostream &WriteGraph(raw_ostream &O, const EdgeBundles &G,
- bool ShortNames = false,
- const Twine &Title = "");
-
} // end namespace llvm
#endif