diff options
| author | Adrian Prantl <aprantl@apple.com> | 2015-03-02 02:38:18 +0000 |
|---|---|---|
| committer | Adrian Prantl <aprantl@apple.com> | 2015-03-02 02:38:18 +0000 |
| commit | e2c9e645324d7df88b096121d94efdfbf72de035 (patch) | |
| tree | a9ca8c8dd28cb76d170c5845031e8dac8af1f0e8 /llvm/test/CodeGen | |
| parent | 0cd23c842e6e1d0747fb14661f1bac0dbbac0cee (diff) | |
| download | bcm5719-llvm-e2c9e645324d7df88b096121d94efdfbf72de035.tar.gz bcm5719-llvm-e2c9e645324d7df88b096121d94efdfbf72de035.zip | |
Refactor DebugLocDWARFExpression so it doesn't require access to the
TargetRegisterInfo. DebugLocEntry now holds a buffer with the raw bytes
of the pre-calculated DWARF expression.
Ought to be NFC, but it does slightly alter the output format of the
textual assembly.
llvm-svn: 230930
Diffstat (limited to 'llvm/test/CodeGen')
| -rw-r--r-- | llvm/test/CodeGen/ARM/debug-info-qreg.ll | 8 | ||||
| -rw-r--r-- | llvm/test/CodeGen/ARM/debug-info-s16-reg.ll | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/ARM/debug-info-qreg.ll b/llvm/test/CodeGen/ARM/debug-info-qreg.ll index c05df6ab3d5..75cdd578ec3 100644 --- a/llvm/test/CodeGen/ARM/debug-info-qreg.ll +++ b/llvm/test/CodeGen/ARM/debug-info-qreg.ll @@ -3,13 +3,13 @@ target datalayout = "e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:32- target triple = "thumbv7-apple-macosx10.6.7" ;CHECK: sub-register DW_OP_regx -;CHECK-NEXT: ascii +;CHECK-NEXT: 256 ;CHECK-NEXT: DW_OP_piece -;CHECK-NEXT: byte 8 +;CHECK-NEXT: 8 ;CHECK-NEXT: sub-register DW_OP_regx -;CHECK-NEXT: ascii +;CHECK-NEXT: 257 ;CHECK-NEXT: DW_OP_piece -;CHECK-NEXT: byte 8 +;CHECK-NEXT: 8 @.str = external constant [13 x i8] diff --git a/llvm/test/CodeGen/ARM/debug-info-s16-reg.ll b/llvm/test/CodeGen/ARM/debug-info-s16-reg.ll index f4b62f4af00..5aa2ca92a0e 100644 --- a/llvm/test/CodeGen/ARM/debug-info-s16-reg.ll +++ b/llvm/test/CodeGen/ARM/debug-info-s16-reg.ll @@ -2,7 +2,7 @@ ; Radar 9309221 ; Test dwarf reg no for s16 ;CHECK: super-register DW_OP_regx -;CHECK-NEXT: ascii +;CHECK-NEXT: 264 ;CHECK-NEXT: DW_OP_piece ;CHECK-NEXT: 4 |

