diff options
author | Sanjay Patel <spatel@rotateright.com> | 2017-12-15 18:54:29 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2017-12-15 18:54:29 +0000 |
commit | 600d24b49c0dd57dff196fd622e6316128aa1637 (patch) | |
tree | 6278b1e72026f7cbb604b89f892cb0a02a9c8bfb | |
parent | 63b57db3969109c9f32a7835fdf4da73f8954272 (diff) | |
download | bcm5719-llvm-600d24b49c0dd57dff196fd622e6316128aa1637.tar.gz bcm5719-llvm-600d24b49c0dd57dff196fd622e6316128aa1637.zip |
[TargetLibraryInfo] fix documentation comment; NFC
llvm-svn: 320842
-rw-r--r-- | llvm/lib/Analysis/TargetLibraryInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/TargetLibraryInfo.cpp b/llvm/lib/Analysis/TargetLibraryInfo.cpp index 47a84bd382a..f8facf28277 100644 --- a/llvm/lib/Analysis/TargetLibraryInfo.cpp +++ b/llvm/lib/Analysis/TargetLibraryInfo.cpp @@ -50,9 +50,9 @@ static bool hasSinCosPiStret(const Triple &T) { return true; } -/// initialize - Initialize the set of available library functions based on the -/// specified target triple. This should be carefully written so that a missing -/// target triple gets a sane set of defaults. +/// Initialize the set of available library functions based on the specified +/// target triple. This should be carefully written so that a missing target +/// triple gets a sane set of defaults. static void initialize(TargetLibraryInfoImpl &TLI, const Triple &T, ArrayRef<StringRef> StandardNames) { // Verify that the StandardNames array is in alphabetical order. |