aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-03-31 16:48:35 +0000
committerDan Gohman <gohman@apple.com>2009-03-31 16:48:35 +0000
commit4b6fce4c0575ab16428970ea8e18e73cd96cea39 (patch)
tree2f3259c7a336434b1d09e87fe7a4633d04439533 /utils
parente1ca7c4dd5b1df27b9b1621d5d032e7ce87a9243 (diff)
downloadexternal_llvm-4b6fce4c0575ab16428970ea8e18e73cd96cea39.zip
external_llvm-4b6fce4c0575ab16428970ea8e18e73cd96cea39.tar.gz
external_llvm-4b6fce4c0575ab16428970ea8e18e73cd96cea39.tar.bz2
Tidy up some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68112 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/CodeGenDAGPatterns.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/TableGen/CodeGenDAGPatterns.cpp b/utils/TableGen/CodeGenDAGPatterns.cpp
index 9061d0f..5bb4ddb 100644
--- a/utils/TableGen/CodeGenDAGPatterns.cpp
+++ b/utils/TableGen/CodeGenDAGPatterns.cpp
@@ -75,16 +75,16 @@ static bool LHSIsSubsetOfRHS(const std::vector<unsigned char> &LHS,
return true;
}
-/// isExtIntegerVT - Return true if the specified extended value type vector
-/// contains isInt or an integer value type.
namespace llvm {
namespace EMVT {
+/// isExtIntegerInVTs - Return true if the specified extended value type vector
+/// contains isInt or an integer value type.
bool isExtIntegerInVTs(const std::vector<unsigned char> &EVTs) {
assert(!EVTs.empty() && "Cannot check for integer in empty ExtVT list!");
return EVTs[0] == isInt || !(FilterEVTs(EVTs, isInteger).empty());
}
-/// isExtFloatingPointVT - Return true if the specified extended value type
+/// isExtFloatingPointInVTs - Return true if the specified extended value type
/// vector contains isFP or a FP value type.
bool isExtFloatingPointInVTs(const std::vector<unsigned char> &EVTs) {
assert(!EVTs.empty() && "Cannot check for integer in empty ExtVT list!");