diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-31 16:48:35 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-31 16:48:35 +0000 |
commit | 90ea62cba6f03f8a0951a731913ab6187a690b11 (patch) | |
tree | c12af02440d4b781eaf7b651e6b71c8abc7dcaa3 | |
parent | 0837aa99eadbca02ff3f77c94c021b166a5f214d (diff) | |
download | bcm5719-llvm-90ea62cba6f03f8a0951a731913ab6187a690b11.tar.gz bcm5719-llvm-90ea62cba6f03f8a0951a731913ab6187a690b11.zip |
Tidy up some comments.
llvm-svn: 68112
-rw-r--r-- | llvm/utils/TableGen/CodeGenDAGPatterns.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp index 9061d0f0491..5bb4ddb2234 100644 --- a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp +++ b/llvm/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!"); |