• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GCC with patches for Dreamcast


Commit MetaInfo

修訂bcc4f85667c88f9be098f2671b01831d4b8d9f7c (tree)
時間2021-05-07 23:16:29
作者Kyrylo Tkachov <kyrylo.tkachov@arm....>
CommiterChristophe Lyon

Log Message

aarch64: Fix gcc.target/aarch64/pr99808.c for ILP32

Fix test for -mabi=ilp32

gcc/testsuite/ChangeLog:

PR target/99808
* gcc.target/aarch64/pr99808.c: Use ULL constant suffix.

Change Summary

差異

--- a/gcc/testsuite/gcc.target/aarch64/pr99808.c
+++ b/gcc/testsuite/gcc.target/aarch64/pr99808.c
@@ -8,7 +8,7 @@
88 float32x4_t
99 foo (void)
1010 {
11- float64x2_t arg2 = vcombine_f64 ((float64x1_t) 0UL, (float64x1_t) 1UL);
12- return vcvt_high_f32_f64 ((float32x2_t) 1UL, arg2);
11+ float64x2_t arg2 = vcombine_f64 ((float64x1_t) 0ULL, (float64x1_t) 1ULL);
12+ return vcvt_high_f32_f64 ((float32x2_t) 1ULL, arg2);
1313 }
1414