aboutsummaryrefslogtreecommitdiff
path: root/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2020-02-13 21:57:20 -0500
committerMatt Arsenault <arsenm2@gmail.com>2020-03-13 10:45:28 -0400
commit6bbc1737e003367d136237d56a7ae02ad4fb1507 (patch)
tree7d4abcf2887be3528437a1d4ff38878f52cbd9d7 /llvm/utils/TableGen/CodeGenDAGPatterns.cpp
parentcbeffa3f6c77274f2e5f44f0743e92095f30a9e7 (diff)
downloadllvm-6bbc1737e003367d136237d56a7ae02ad4fb1507.zip
llvm-6bbc1737e003367d136237d56a7ae02ad4fb1507.tar.gz
llvm-6bbc1737e003367d136237d56a7ae02ad4fb1507.tar.bz2
TableGen: Fix typo
Diffstat (limited to 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp')
-rw-r--r--llvm/utils/TableGen/CodeGenDAGPatterns.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
index f9fc046..db61139 100644
--- a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
+++ b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
@@ -277,7 +277,7 @@ bool TypeSetByHwMode::intersect(SetType &Out, const SetType &In) {
// Compute the intersection of scalars separately to account for only
// one set containing iPTR.
- // The itersection of iPTR with a set of integer scalar types that does not
+ // The intersection of iPTR with a set of integer scalar types that does not
// include iPTR will result in the most specific scalar type:
// - iPTR is more specific than any set with two elements or more
// - iPTR is less specific than any single integer scalar type.