summaryrefslogtreecommitdiff
path: root/utils/TableGen/NeonEmitter.h
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-12-04 04:40:15 +0000
committerBob Wilson <bob.wilson@apple.com>2010-12-04 04:40:15 +0000
commit7f762187209baded73a24a9040edb6b3b29bada4 (patch)
tree675cf6574256cdfecbdecdd7375d8f778d661930 /utils/TableGen/NeonEmitter.h
parent5d4918dbd116b0b5e561c431b1ea527ee1b9302a (diff)
downloadllvm-7f762187209baded73a24a9040edb6b3b29bada4.tar.gz
llvm-7f762187209baded73a24a9040edb6b3b29bada4.tar.bz2
llvm-7f762187209baded73a24a9040edb6b3b29bada4.tar.xz
Remove trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120891 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/NeonEmitter.h')
-rw-r--r--utils/TableGen/NeonEmitter.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/TableGen/NeonEmitter.h b/utils/TableGen/NeonEmitter.h
index ffea64410a..67ad4ef1da 100644
--- a/utils/TableGen/NeonEmitter.h
+++ b/utils/TableGen/NeonEmitter.h
@@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===//
//
// This tablegen backend is responsible for emitting arm_neon.h, which includes
-// a declaration and definition of each function specified by the ARM NEON
+// a declaration and definition of each function specified by the ARM NEON
// compiler interface. See ARM document DUI0348B.
//
//===----------------------------------------------------------------------===//
@@ -66,12 +66,12 @@ enum ClassKind {
};
namespace llvm {
-
+
class NeonEmitter : public TableGenBackend {
RecordKeeper &Records;
StringMap<OpKind> OpMap;
DenseMap<Record*, ClassKind> ClassMap;
-
+
public:
NeonEmitter(RecordKeeper &R) : Records(R) {
OpMap["OP_NONE"] = OpNone;
@@ -115,14 +115,14 @@ namespace llvm {
ClassMap[II] = ClassI;
ClassMap[WI] = ClassW;
}
-
+
// run - Emit arm_neon.h.inc
void run(raw_ostream &o);
// runHeader - Emit all the __builtin prototypes used in arm_neon.h
void runHeader(raw_ostream &o);
};
-
+
} // End llvm namespace
#endif