Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: tests_lit/llvm2ice_tests/addr-opt-multi-def-var.ll

Issue 1132883003: Change a build-attribute REQUIRES check to use supported not requested. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: move comment Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/IceCompiler.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ; This is distilled from a real function that led to a bug in the 1 ; This is distilled from a real function that led to a bug in the
2 ; address mode optimization code. It followed assignment chains 2 ; address mode optimization code. It followed assignment chains
3 ; through non-SSA temporaries created from Phi instruction lowering. 3 ; through non-SSA temporaries created from Phi instruction lowering.
4 ; 4 ;
5 ; This test depends to some degree on the stability of "--verbose 5 ; This test depends to some degree on the stability of "--verbose
6 ; addropt" output format. 6 ; addropt" output format.
7 7
8 ; REQUIRES: x86-32 8 ; REQUIRES: target_X8632
9 ; REQUIRES: allow_dump 9 ; REQUIRES: allow_dump
10 ; RUN: %p2i -i %s --args -O2 --verbose addropt | FileCheck %s 10 ; RUN: %p2i -i %s --args -O2 --verbose addropt | FileCheck %s
11 11
12 declare i32 @_calloc_r(i32, i32, i32) 12 declare i32 @_calloc_r(i32, i32, i32)
13 13
14 define internal i32 @_Balloc(i32 %ptr, i32 %k) { 14 define internal i32 @_Balloc(i32 %ptr, i32 %k) {
15 entry: 15 entry:
16 %gep = add i32 %ptr, 76 16 %gep = add i32 %ptr, 76
17 %gep.asptr = inttoptr i32 %gep to i32* 17 %gep.asptr = inttoptr i32 %gep to i32*
18 %0 = load i32* %gep.asptr, align 1 18 %0 = load i32* %gep.asptr, align 1
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 ; Instruction: [ 12] %gep_array = mul i32 %k, 4 59 ; Instruction: [ 12] %gep_array = mul i32 %k, 4
60 ; results in Base=%__4, Index=%k, Shift=2, Offset=0 60 ; results in Base=%__4, Index=%k, Shift=2, Offset=0
61 ; 61 ;
62 ; CHECK-NOT: results in Base=%__4, 62 ; CHECK-NOT: results in Base=%__4,
63 ; 63 ;
64 ret i32 %2 64 ret i32 %2
65 65
66 return: ; preds = %if.then 66 return: ; preds = %if.then
67 ret i32 0 67 ret i32 0
68 } 68 }
OLDNEW
« no previous file with comments | « src/IceCompiler.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698