-
For example, Clang has [`#pragma loop`](http://clang.llvm.org/docs/LanguageExtensions.html#extensions-for-loop-hint-optimizations) which allow the programmer to guide loop unrolling, vectorization, an…
-
Hi,
There has been a recent effort to compile Fortran with LLVM target (https://github.com/flang-compiler/flang). Can we expect Emscripten also support Fortran in the future? Thank you.
Best Reg…
-
Remove the `zvfhmin` and `zvfh` check for `BaseType` and use `RequiredFeatures` in riscv_vector.td to check the intrinsics instead, the type check should be done in `checkRVVTypeSupport`. This check a…
-
| | |
|--------------------|----|
| Bugzilla Link | [PR50037](https://bugs.llvm.org/show_bug.cgi?id=50037) |
| Status | NEW |
| Importance | P normal |
|…
-
Hi,
Few issues on Linux when trying to build:
One is that using upFromNextMajor does not work as it will throw these errors:
```
error: Dependencies could not be resolved because root depends …
-
source code:
```
spacetanuki% cat x.c
// dumb copy-and-paste from clang/docs/LanguageExtensions.rst
typedef void (*__funcref funcref_t)();
static __funcref table[0];
size_t
getSize()
{
…
yamt updated
2 months ago
-
| | |
|--------------------|----|
| Bugzilla Link | [PR48713](https://bugs.llvm.org/show_bug.cgi?id=48713) |
| Status | NEW |
| Importance | P enhancemen…
-
| | |
|--------------------|----|
| Bugzilla Link | [PR31560](https://bugs.llvm.org/show_bug.cgi?id=31560) |
| Status | NEW |
| Importance | P normal |
|…
-
```
@interface Cls
@end
@implementation Cls
- (void)method __attribute__((nonblocking)) {
}
@end
```
The `nonblocking` attribute is silently ignored here.
`ActOnMethodDeclaration` recei…
-
Crash itself is reproducible on Godbolt:
https://godbolt.org/z/EsWdjonnE
Reproducer:
```f90
module m
contains
function f(i) result(res)
character(len=i) :: res
end function
…