diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-06-02 17:13:25 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-06-02 17:13:25 +0000 |
commit | 9ce58b1cfbb125c77dc7a89e43b767727c7bb4db (patch) | |
tree | 29143410ce368b4cbacca7864c236473ae875f1f /llvm/test/Assembler/disubrange-empty-array.ll | |
parent | 677acee5031e44ab7d8fdb5d49679ee0b6a7f020 (diff) | |
download | bcm5719-llvm-9ce58b1cfbb125c77dc7a89e43b767727c7bb4db.tar.gz bcm5719-llvm-9ce58b1cfbb125c77dc7a89e43b767727c7bb4db.zip |
DebugInfo: Rename testcases from MD* to DI*, NFC
As a follow-up to r236120, rename testcases to match the new names.
llvm-svn: 238853
Diffstat (limited to 'llvm/test/Assembler/disubrange-empty-array.ll')
-rw-r--r-- | llvm/test/Assembler/disubrange-empty-array.ll | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/Assembler/disubrange-empty-array.ll b/llvm/test/Assembler/disubrange-empty-array.ll new file mode 100644 index 00000000000..7b5279e3d3c --- /dev/null +++ b/llvm/test/Assembler/disubrange-empty-array.ll @@ -0,0 +1,14 @@ +; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s +; RUN: verify-uselistorder %s + +; CHECK: !named = !{!0, !0, !1, !2} +!named = !{!0, !1, !2, !3} + +; CHECK: !0 = !DISubrange(count: -1) +; CHECK-NEXT: !1 = !DISubrange(count: -1, lowerBound: 4) +; CHECK-NEXT: !2 = !DISubrange(count: -1, lowerBound: -5) +!0 = !DISubrange(count: -1) +!1 = !DISubrange(count: -1, lowerBound: 0) + +!2 = !DISubrange(count: -1, lowerBound: 4) +!3 = !DISubrange(count: -1, lowerBound: -5) |