Home
last modified time | relevance | path

Searched refs:plus1 (Results 1 – 2 of 2) sorted by relevance

/external/llvm/test/Analysis/BasicAA/
Dzext.ll36 %i = phi i32 [ 0, %0 ], [ %i.plus1, %for.loop ]
38 %a.plus1 = getelementptr inbounds i8, i8* %mem, i64 16
40 %b = getelementptr inbounds i8, i8* %a.plus1, i64 %i.64
41 %i.plus1 = add nuw nsw i32 %i, 1
42 %cmp = icmp eq i32 %i.plus1, 10
56 %mem = phi i8* [ %mem.orig, %0 ], [ %mem.plus1, %for.loop ]
57 %i = phi i32 [ 0, %0 ], [ %i.plus1, %for.loop ]
59 %a.plus1 = getelementptr inbounds i8, i8* %mem, i64 16
61 %b = getelementptr inbounds i8, i8* %a.plus1, i64 %i.64
62 %i.plus1 = add nuw nsw i32 %i, 1
[all …]
/external/clang/test/Analysis/
Dinline.c99 int plus1(int x);
101 clang_analyzer_eval(plus1(2) == 3); // expected-warning{{TRUE}} in test()
104 int plus1(int x) { in plus1() function