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

Side by Side Diff: test/NaCl/Bitcode/bcanalyzer-width.ll

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: undo localmod Created 5 years, 10 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 | « test/NaCl/Bitcode/alloca-operand.ll ('k') | test/NaCl/Bitcode/bccompress.ll » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 ; RUN: llvm-as < %s | pnacl-freeze | pnacl-bcanalyzer -dump-records \
2 ; RUN: | FileCheck %s -check-prefix=BC
3 ; RUN: llvm-as < %s | pnacl-freeze \
4 ; RUN: | pnacl-bcanalyzer -dump-records -operands-per-line=2 \
5 ; RUN: | FileCheck %s -check-prefix=BC2
6 ; RUN: llvm-as < %s | pnacl-freeze \
7 ; RUN: | pnacl-bcanalyzer -dump-records -operands-per-line=8 \
8 ; RUN: | FileCheck %s -check-prefix=BC8
9
10 ; Test that the command-line option -operands-per-line works as expected.
11
12 @bytes = internal global [10 x i8] c"abcdefghij"
13
14 ; BC: <DATA op0=97 op1=98 op2=99 op3=100 op4=101 op5=102 op6=103 op7=104 op8=105 op9=106/>
15
16 ; BC2: <DATA op0=97 op1=98
17 ; BC2: op2=99 op3=100
18 ; BC2: op4=101 op5=102
19 ; BC2: op6=103 op7=104
20 ; BC2: op8=105 op9=106/>
21
22 ; BC8: <DATA op0=97 op1=98 op2=99 op3=100 op4=101 op5=102 op6=103 op7=104
23 ; BC8: op8=105 op9=106/>
OLDNEW
« no previous file with comments | « test/NaCl/Bitcode/alloca-operand.ll ('k') | test/NaCl/Bitcode/bccompress.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698