Index: test/NaCl/Bitcode/bcanalyzer-width.ll |
diff --git a/test/NaCl/Bitcode/bcanalyzer-width.ll b/test/NaCl/Bitcode/bcanalyzer-width.ll |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e9c7c289cc193aa8527a79ab4f9b0db1bf6e087e |
--- /dev/null |
+++ b/test/NaCl/Bitcode/bcanalyzer-width.ll |
@@ -0,0 +1,23 @@ |
+; RUN: llvm-as < %s | pnacl-freeze | pnacl-bcanalyzer -dump-records \ |
+; RUN: | FileCheck %s -check-prefix=BC |
+; RUN: llvm-as < %s | pnacl-freeze \ |
+; RUN: | pnacl-bcanalyzer -dump-records -operands-per-line=2 \ |
+; RUN: | FileCheck %s -check-prefix=BC2 |
+; RUN: llvm-as < %s | pnacl-freeze \ |
+; RUN: | pnacl-bcanalyzer -dump-records -operands-per-line=8 \ |
+; RUN: | FileCheck %s -check-prefix=BC8 |
+ |
+; Test that the command-line option -operands-per-line works as expected. |
+ |
+@bytes = internal global [10 x i8] c"abcdefghij" |
+ |
+; BC: <DATA op0=97 op1=98 op2=99 op3=100 op4=101 op5=102 op6=103 op7=104 op8=105 op9=106/> |
+ |
+; BC2: <DATA op0=97 op1=98 |
+; BC2: op2=99 op3=100 |
+; BC2: op4=101 op5=102 |
+; BC2: op6=103 op7=104 |
+; BC2: op8=105 op9=106/> |
+ |
+; BC8: <DATA op0=97 op1=98 op2=99 op3=100 op4=101 op5=102 op6=103 op7=104 |
+; BC8: op8=105 op9=106/> |