summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorPatrik Hägglund <patrik.h.hagglund@ericsson.com>2012-05-23 12:34:56 +0000
committerPatrik Hägglund <patrik.h.hagglund@ericsson.com>2012-05-23 12:34:56 +0000
commit9ce6f6fe5e44a5bd4c4dcee660cddd197aec5307 (patch)
tree2f8086f1b5d179a5e0375cd7e8571d08f017c574 /utils
parentd76938788b4b682043a74befbb6320ce0077ddc9 (diff)
downloadexternal_llvm-9ce6f6fe5e44a5bd4c4dcee660cddd197aec5307.zip
external_llvm-9ce6f6fe5e44a5bd4c4dcee660cddd197aec5307.tar.gz
external_llvm-9ce6f6fe5e44a5bd4c4dcee660cddd197aec5307.tar.bz2
Fixed typo in r156905.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157320 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/IntrinsicEmitter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/IntrinsicEmitter.cpp b/utils/TableGen/IntrinsicEmitter.cpp
index 2a22c97..226d907 100644
--- a/utils/TableGen/IntrinsicEmitter.cpp
+++ b/utils/TableGen/IntrinsicEmitter.cpp
@@ -470,7 +470,7 @@ void printIITEntry(raw_ostream &OS, unsigned char X) {
void IntrinsicEmitter::EmitGenerator(const std::vector<CodeGenIntrinsic> &Ints,
raw_ostream &OS) {
OS << "// Global intrinsic function declaration type table.\n";
- OS << "#ifdef GET_INTRINSTIC_GENERATOR_GLOBAL\n";
+ OS << "#ifdef GET_INTRINSIC_GENERATOR_GLOBAL\n";
// NOTE: These enums must be kept in sync with the ones above!
OS << "enum IIT_Info {\n";
OS << " IIT_Done = 0,\n";
@@ -575,7 +575,7 @@ void IntrinsicEmitter::EmitGenerator(const std::vector<CodeGenIntrinsic> &Ints,
LongEncodingTable.emit(OS, printIITEntry);
OS << " 255\n};\n\n";
- OS << "#endif\n\n"; // End of GET_INTRINSTIC_GENERATOR_GLOBAL
+ OS << "#endif\n\n"; // End of GET_INTRINSIC_GENERATOR_GLOBAL
}
namespace {