diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-12-01 19:50:20 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-12-01 19:50:20 +0000 |
commit | e343583370ba7465273645a300b9a829e3a95d82 (patch) | |
tree | 66f546fbd489bda85d19b65736e29a7d358aa01b | |
parent | 08a53269b1f8241e2e6797e845abbe640fb18253 (diff) |
Add some comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120598 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/arm_neon.td | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/Basic/arm_neon.td b/include/clang/Basic/arm_neon.td index c0647e8a87..e1e7bb8112 100644 --- a/include/clang/Basic/arm_neon.td +++ b/include/clang/Basic/arm_neon.td @@ -52,7 +52,10 @@ class Inst <string p, string t, Op o> { bit isShift = 0; } -// Used to generate Builtins.def +// Used to generate Builtins.def: +// SInst: Instruction with signed/unsigned suffix (e.g., "s8", "u8", "p8") +// IInst: Instruction with generic integer suffix (e.g., "i8") +// WInst: Instruction with only bit size suffix (e.g., "8") class SInst<string p, string t> : Inst<p, t, OP_NONE> {} class IInst<string p, string t> : Inst<p, t, OP_NONE> {} class WInst<string p, string t> : Inst<p, t, OP_NONE> {} |