diff options
| author | Duncan Sands <baldrick@free.fr> | 2010-02-15 16:12:20 +0000 |
|---|---|---|
| committer | Duncan Sands <baldrick@free.fr> | 2010-02-15 16:12:20 +0000 |
| commit | 9dff9bec316a5027e3fd7ae292a74f278f0fe95d (patch) | |
| tree | b0d7ba54e1a43072e5d05e5a6656f5d783c271ee /llvm/docs/ProgrammersManual.html | |
| parent | 37b3c48ef7d962dcdd074105d35dabbcd934c39b (diff) | |
| download | bcm5719-llvm-9dff9bec316a5027e3fd7ae292a74f278f0fe95d.tar.gz bcm5719-llvm-9dff9bec316a5027e3fd7ae292a74f278f0fe95d.zip | |
Uniformize the names of type predicates: rather than having isFloatTy and
isInteger, we now have isFloatTy and isIntegerTy. Requested by Chris!
llvm-svn: 96223
Diffstat (limited to 'llvm/docs/ProgrammersManual.html')
| -rw-r--r-- | llvm/docs/ProgrammersManual.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html index a37eca2cb8a..d74a645558c 100644 --- a/llvm/docs/ProgrammersManual.html +++ b/llvm/docs/ProgrammersManual.html @@ -2999,9 +2999,9 @@ the <tt>lib/VMCore</tt> directory.</p> <div class="doc_text"> <ul> - <li><tt>bool isInteger() const</tt>: Returns true for any integer type.</li> + <li><tt>bool isIntegerTy() const</tt>: Returns true for any integer type.</li> - <li><tt>bool isFloatingPoint()</tt>: Return true if this is one of the two + <li><tt>bool isFloatingPointTy()</tt>: Return true if this is one of the five floating point types.</li> <li><tt>bool isAbstract()</tt>: Return true if the type is abstract (contains |

