summaryrefslogtreecommitdiff
path: root/utils/TableGen/IntrinsicEmitter.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-06-26 00:43:18 +0000
committerDan Gohman <gohman@apple.com>2007-06-26 00:43:18 +0000
commit9a0930dbd99af7958ef24bb4887ae6b1e294532f (patch)
tree32e42575b5c6fb7db62c747ad782ddb1f970a6b2 /utils/TableGen/IntrinsicEmitter.cpp
parentbc9d89e6a2d685de7db90013a37e1a60a4ef38de (diff)
downloadllvm-9a0930dbd99af7958ef24bb4887ae6b1e294532f.tar.gz
llvm-9a0930dbd99af7958ef24bb4887ae6b1e294532f.tar.bz2
llvm-9a0930dbd99af7958ef24bb4887ae6b1e294532f.tar.xz
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/IntrinsicEmitter.cpp')
-rw-r--r--utils/TableGen/IntrinsicEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/IntrinsicEmitter.cpp b/utils/TableGen/IntrinsicEmitter.cpp
index a362553d2a..89e9621c17 100644
--- a/utils/TableGen/IntrinsicEmitter.cpp
+++ b/utils/TableGen/IntrinsicEmitter.cpp
@@ -141,7 +141,7 @@ static void EmitTypeGenerate(std::ostream &OS, Record *ArgType,
// NOTE: The ArgNo variable here is not the absolute argument number, it is
// the index of the "arbitrary" type in the Tys array passed to the
// Intrinsic::getDeclaration function. Consequently, we only want to
- // increment it when we actually hit an arbitray integer type which is
+ // increment it when we actually hit an arbitrary integer type which is
// identified by BitWidth == 0. Getting this wrong leads to very subtle
// bugs!
if (BitWidth == 0)