OLD | NEW |
1 ; RUN: %szdiff --llvm2ice=%llvm2ice %s | FileCheck --check-prefix=DUMP %s | 1 ; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s |
| 2 ; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ |
| 3 ; RUN: | FileCheck --check-prefix=DUMP %s |
2 | 4 |
3 ; This is a smoke test for floating-point constant pooling. It tests | 5 ; This is a smoke test for floating-point constant pooling. It tests |
4 ; pooling of various float and double constants (including positive | 6 ; pooling of various float and double constants (including positive |
5 ; and negative NaN) within functions and across functions. Note that | 7 ; and negative NaN) within functions and across functions. Note that |
6 ; in LLVM bitcode, hex constants are used for an FP constant whenever | 8 ; in LLVM bitcode, hex constants are used for an FP constant whenever |
7 ; the constant "cannot be represented as a decimal floating point | 9 ; the constant "cannot be represented as a decimal floating point |
8 ; number in a reasonable number of digits". See | 10 ; number in a reasonable number of digits". See |
9 ; http://llvm.org/docs/LangRef.html#simple-constants . | 11 ; http://llvm.org/docs/LangRef.html#simple-constants . |
10 | 12 |
11 @__init_array_start = internal constant [0 x i8] zeroinitializer, align 4 | 13 @__init_array_start = internal constant [0 x i8] zeroinitializer, align 4 |
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 %add68 = fadd double %conv67, 0xFFF8000000000000 | 528 %add68 = fadd double %conv67, 0xFFF8000000000000 |
527 br label %return | 529 br label %return |
528 | 530 |
529 return: ; preds = %entry, %sw.bb65, %s
w.bb61, %sw.bb57, %sw.bb53, %sw.bb49, %sw.bb45, %sw.bb41, %sw.bb37, %sw.bb33, %s
w.bb29, %sw.bb25, %sw.bb21, %sw.bb17, %sw.bb13, %sw.bb9, %sw.bb5, %sw.bb1, %sw.b
b | 531 return: ; preds = %entry, %sw.bb65, %s
w.bb61, %sw.bb57, %sw.bb53, %sw.bb49, %sw.bb45, %sw.bb41, %sw.bb37, %sw.bb33, %s
w.bb29, %sw.bb25, %sw.bb21, %sw.bb17, %sw.bb13, %sw.bb9, %sw.bb5, %sw.bb1, %sw.b
b |
530 %retval.0 = phi double [ %add68, %sw.bb65 ], [ %add64, %sw.bb61 ], [ %add60, %
sw.bb57 ], [ %add56, %sw.bb53 ], [ %add52, %sw.bb49 ], [ %conv48, %sw.bb45 ], [
%conv44, %sw.bb41 ], [ %conv40, %sw.bb37 ], [ %conv36, %sw.bb33 ], [ %add32, %sw
.bb29 ], [ %add28, %sw.bb25 ], [ %add24, %sw.bb21 ], [ %add20, %sw.bb17 ], [ %ad
d16, %sw.bb13 ], [ %conv12, %sw.bb9 ], [ %conv8, %sw.bb5 ], [ %conv4, %sw.bb1 ],
[ %conv, %sw.bb ], [ 0.000000e+00, %entry ] | 532 %retval.0 = phi double [ %add68, %sw.bb65 ], [ %add64, %sw.bb61 ], [ %add60, %
sw.bb57 ], [ %add56, %sw.bb53 ], [ %add52, %sw.bb49 ], [ %conv48, %sw.bb45 ], [
%conv44, %sw.bb41 ], [ %conv40, %sw.bb37 ], [ %conv36, %sw.bb33 ], [ %add32, %sw
.bb29 ], [ %add28, %sw.bb25 ], [ %add24, %sw.bb21 ], [ %add20, %sw.bb17 ], [ %ad
d16, %sw.bb13 ], [ %conv12, %sw.bb9 ], [ %conv8, %sw.bb5 ], [ %conv4, %sw.bb1 ],
[ %conv, %sw.bb ], [ 0.000000e+00, %entry ] |
531 ret double %retval.0 | 533 ret double %retval.0 |
532 } | 534 } |
533 | 535 |
534 ; ERRORS-NOT: ICE translation error | 536 ; ERRORS-NOT: ICE translation error |
535 ; DUMP-NOT: SZ | 537 ; DUMP-NOT: SZ |
OLD | NEW |