From: Bob Wilson Date: Wed, 1 Dec 2010 19:50:20 +0000 (+0000) Subject: Add some comments. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e343583370ba7465273645a300b9a829e3a95d82;p=clang Add some comments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120598 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 { 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 : Inst {} class IInst : Inst {} class WInst : Inst {}