OLD | NEW |
---|---|
1 ; Simple test of signed and unsigned integer conversions. | 1 ; Simple test of signed and unsigned integer conversions. |
2 | 2 |
3 ; RUIN: %llvm2ice -O2 --verbose none %s | FileCheck %s | 3 ; RUN: %llvm2ice -O2 --verbose none %s | FileCheck --check-prefix=OPTM1 %s |
jvoung (off chromium)
2014/05/28 17:48:15
What uses the CHECK prefix then (there are CHECK c
Jim Stichnoth
2014/05/29 01:39:46
It turned out that when Karl made changes to this
| |
4 ; RUN: %llvm2ice -Om1 --verbose none %s | FileCheck --check-prefix=OPTM1 %s | 4 ; RUN: %llvm2ice -Om1 --verbose none %s | FileCheck --check-prefix=OPTM1 %s |
5 ; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s | 5 ; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s |
6 ; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s | 6 ; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s |
7 ; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ | 7 ; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ |
8 ; RUN: | FileCheck --check-prefix=DUMP %s | 8 ; RUN: | FileCheck --check-prefix=DUMP %s |
9 | 9 |
10 @i8v = global [1 x i8] zeroinitializer, align 1 | 10 @i8v = global [1 x i8] zeroinitializer, align 1 |
11 @i16v = global [2 x i8] zeroinitializer, align 2 | 11 @i16v = global [2 x i8] zeroinitializer, align 2 |
12 @i32v = global [4 x i8] zeroinitializer, align 4 | 12 @i32v = global [4 x i8] zeroinitializer, align 4 |
13 @i64v = global [8 x i8] zeroinitializer, align 8 | 13 @i64v = global [8 x i8] zeroinitializer, align 8 |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
276 ; CHECK-NEXT: mov dword ptr [ | 276 ; CHECK-NEXT: mov dword ptr [ |
277 ; | 277 ; |
278 ; OPTM1: from_uint64: | 278 ; OPTM1: from_uint64: |
279 ; OPTM1: u64v | 279 ; OPTM1: u64v |
280 ; OPTM1: i8v | 280 ; OPTM1: i8v |
281 ; OPTM1: i16v | 281 ; OPTM1: i16v |
282 ; OPTM1: i32v | 282 ; OPTM1: i32v |
283 | 283 |
284 ; ERRORS-NOT: ICE translation error | 284 ; ERRORS-NOT: ICE translation error |
285 ; DUMP-NOT: SZ | 285 ; DUMP-NOT: SZ |
OLD | NEW |