You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
configury: enhance short float detection with clang
With clang, short float support requires --rtlib=compiler-rt
to be passed to the linker. In order to avoid a false positive,
it is necessary have the runtime called in the test program.
The test program was hence updated with the function
below that generates a call to the __extendhfsf2() runtime function.
float extend (_Float16 v) {
return (float)v;
}
Thanks Blaise Bourdin for reporting this.
Refs: #13181
Signed-off-by: Gilles Gouaillardet <gilles@rist.or.jp>
0 commit comments