[libc-commits] [libc] [libc][stdfix] Implement fixed point fxbits functions in llvm-libc (PR #114912)

Nick Desaulniers via libc-commits libc-commits at lists.llvm.org
Mon Nov 11 10:03:07 PST 2024


================
@@ -15,13 +15,26 @@ def UnsignedShortAccumType : NamedType<"unsigned short accum">;
 def UnsignedAccumType : NamedType<"unsigned accum">;
 def UnsignedLongAccumType : NamedType<"unsigned long accum">;
 
+def IntHrT : NamedType <"int_hr_t">; 
+def IntRT : NamedTypes<"int_r_t">;
----------------
nickdesaulniers wrote:

Buildbots are failing with:
```
llvm-project/libc/spec/stdc_ext.td:19:13: error: Couldn't find class 'NamedTypes'
def IntRT : NamedTypes<"int_r_t">;
            ^
```

https://github.com/llvm/llvm-project/pull/114912


More information about the libc-commits mailing list