diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2010-06-16 23:24:12 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2010-06-16 23:24:12 +0000 |
commit | e87de41189b1591afd88e4dc12eeb17e06b77d3e (patch) | |
tree | 31621b77739ec01945f812c060d5e52df8ba5bee /docs | |
parent | d0e8469ba65c54b593df15b7249d7fe12097c4cf (diff) |
let the '!eq' expression support 'int' and 'bit' types
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106171 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/TableGenFundamentals.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/TableGenFundamentals.html b/docs/TableGenFundamentals.html index e504a89464..3410cacb62 100644 --- a/docs/TableGenFundamentals.html +++ b/docs/TableGenFundamentals.html @@ -425,8 +425,8 @@ class. This operation is analogous to $(foreach) in GNU make.</dd> <dd>'b' if the result of integer operator 'a' is nonzero, 'c' otherwise.</dd> <dt><tt>!eq(a,b)</tt></dt> <dd>Integer one if string a is equal to string b, zero otherwise. This - only operates on string objects. Use !cast<string> to compare other - types of objects.</dd> + only operates on string, int and bit objects. Use !cast<string> to + compare other types of objects.</dd> </dl> <p>Note that all of the values have rules specifying how they convert to values |