From godbolt.org
Compiler Explorer - C++ (ARM64 gcc 14.2.0)
1 1
struct CacheIRReader {}; bool emitReturnFromIC(CacheIRReader& reader); enum TranspilationStatus { Success, Error, TryIC }; template <typename T> bool test() { CacheIRReader reader; TranspilationStatus status; ...
5h ago
From godbolt.org
Compiler Explorer - C (x86 msvc v19.latest)
1 1
void (int a[static 2]){} int main(void){}
9h ago
From godbolt.org
Compiler Explorer - C (x86 msvc v19.latest)
1 1
[[nodiscard]] int f(){ return 1; } int main(void){ f(); }
10h ago
From godbolt.org
Compiler Explorer - C++ (ARM64 gcc 14.2.0)
1 1
struct CacheIRReader {}; bool emitReturnFromIC(CacheIRReader& reader); enum TranspilationStatus { Success, Error, TryIC }; template <typename T> bool test() { CacheIRReader reader; TranspilationStatus status; ...
5h ago
From godbolt.org
Compiler Explorer - C (x86 msvc v19.latest)
1 1
struct X { int i; }; int main() { struct X x = {}; }
11h ago