diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 | 
| commit | 5e20cdd81c44a443562a09007668ffdf76c455af (patch) | |
| tree | dbbd4047878da71c1a706e26ce05b4e7791b14cc /test/CodeGen/builtin-assume.c | |
| parent | d5f23b0b7528b5c3caed1ba14f897cc4aaa9e3c3 (diff) | |
Notes
Diffstat (limited to 'test/CodeGen/builtin-assume.c')
| -rw-r--r-- | test/CodeGen/builtin-assume.c | 23 | 
1 files changed, 21 insertions, 2 deletions
| diff --git a/test/CodeGen/builtin-assume.c b/test/CodeGen/builtin-assume.c index 8411b729abf5..19afec69e787 100644 --- a/test/CodeGen/builtin-assume.c +++ b/test/CodeGen/builtin-assume.c @@ -1,25 +1,44 @@  // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s  // RUN: %clang_cc1 -triple i386-mingw32 -fms-extensions -emit-llvm -o - %s | FileCheck %s +int nonconst(void); +int isconst(void) __attribute__((const)); +int ispure(void) __attribute__((pure)); +  // CHECK-LABEL: @test1  int test1(int *a, int i) {  // CHECK: store i32* %a, i32** [[A_ADDR:%.+]], align -// CHECK: [[A:%.+]] = load i32** [[A_ADDR]] +// CHECK: [[A:%.+]] = load i32*, i32** [[A_ADDR]]  // CHECK: [[CMP:%.+]] = icmp ne i32* [[A]], null  // CHECK: call void @llvm.assume(i1 [[CMP]]) + +// CHECK: [[CALL:%.+]] = call i32 @isconst() +// CHECK: [[BOOL:%.+]] = icmp ne i32 [[CALL]], 0 +// CHECK: call void @llvm.assume(i1 [[BOOL]]) + +// CHECK: [[CALLPURE:%.+]] = call i32 @ispure() +// CHECK: [[BOOLPURE:%.+]] = icmp ne i32 [[CALLPURE]], 0 +// CHECK: call void @llvm.assume(i1 [[BOOLPURE]])  #ifdef _MSC_VER    __assume(a != 0) +  __assume(isconst()); +  __assume(ispure());  #else    __builtin_assume(a != 0); +  __builtin_assume(isconst()); +  __builtin_assume(ispure());  #endif  // Nothing is generated for an assume with side effects... -// CHECK-NOT: load i32** %i.addr +// CHECK-NOT: load i32*, i32** %i.addr  // CHECK-NOT: call void @llvm.assume +// CHECK-NOT: call i32 @nonconst()  #ifdef _MSC_VER    __assume(++i != 0) +  __assume(nonconst());  #else    __builtin_assume(++i != 0); +  __builtin_assume(nonconst());  #endif    return a[0]; | 
