OLD | NEW |
1 ; Trivial smoke test of bitcast between integer and FP types. | 1 ; Trivial smoke test of bitcast between integer and FP types. |
2 | 2 |
3 ; RUN: %p2i -i %s --args -O2 --verbose none \ | 3 ; RUN: %p2i -i %s --args -O2 --verbose none \ |
4 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ | 4 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \ |
5 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s | 5 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s |
6 ; RUN: %p2i -i %s --args -Om1 --verbose none \ | 6 ; RUN: %p2i -i %s --args -Om1 --verbose none \ |
7 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ | 7 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \ |
8 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s | 8 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s |
9 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s | 9 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s |
10 ; RUN: %p2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s | 10 ; RUN: %p2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s |
11 | 11 |
12 define internal i32 @cast_f2i(float %f) { | 12 define internal i32 @cast_f2i(float %f) { |
13 entry: | 13 entry: |
14 %v0 = bitcast float %f to i32 | 14 %v0 = bitcast float %f to i32 |
15 ret i32 %v0 | 15 ret i32 %v0 |
16 } | 16 } |
17 ; CHECK-LABEL: cast_f2i | 17 ; CHECK-LABEL: cast_f2i |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 ret double %v0 | 61 ret double %v0 |
62 } | 62 } |
63 ; CHECK-LABEL: cast_ll2d_const | 63 ; CHECK-LABEL: cast_ll2d_const |
64 ; CHECK: mov {{.*}}, 1942892530 | 64 ; CHECK: mov {{.*}}, 1942892530 |
65 ; CHECK: mov {{.*}}, 2874 | 65 ; CHECK: mov {{.*}}, 2874 |
66 ; CHECK: fld qword ptr | 66 ; CHECK: fld qword ptr |
67 ; CHECK: ret | 67 ; CHECK: ret |
68 | 68 |
69 ; ERRORS-NOT: ICE translation error | 69 ; ERRORS-NOT: ICE translation error |
70 ; DUMP-NOT: SZ | 70 ; DUMP-NOT: SZ |
OLD | NEW |