Thomas Mathys

Results 5 issues of Thomas Mathys

Hello, I was trying to mimick a parser built with glibc's argp. argp's built in help option can be invoked with either the -? or the --help option. When I...

enhancement

armdata.js marks "blx label" as available in ARMv4: `["blx" , "#RelS*4" , "T32", "1111|0|RelS[22]|RelS[19:10]|11|Ja|0|Jb|RelS[9:0]|0" , "ARMv4T+ IT=OUT|LAST"],` `["blx" , "#RelS*2" , "A32", "1111|101|RelS[0]|RelS[24:1]" , "ARMv4+"],` but I used to work...

`["tst" , "Rn!=XX, #ImmC" , "T32", "1111|0|ImmC:1|0|0000|1|Rn|0|ImmC:3|1111|ImmC:8" , "ARMv4T+ IT=ANY APSR.NZC=W"]` Shouldn't that be ARMv6T2+? See [here](https://developer.arm.com/documentation/dui0204/f/arm-and-thumb-instructions/general-data-processing-instructions/tst-and-teq), "These 32-bit Thumb-2 instructions are available in T2 variants of ARMv6 and above."...

**Is your feature request related to a problem? Please describe.** I often find myself writing code such as ``` Create.Table("FooType") .WithColumn("Id").AsInt64().NotNullable().PrimaryKey() .WithColumn("Name").AsString().NotNullable(); Insert.IntoTable("FooType").Row(new { Id = 1, Name = "TypeX"...

feature

**Describe the question** I'm trying to create a foreign key to a composite primary key for SQLite as shown below: ``` CREATE TABLE Area( ArticleId TEXT NOT NULL, AreaGroupIndex INTEGER...

db:sqlite