[llvm] r243640 - [mips] Fix out-of-date debug information in test file.

Vasileios Kalintiris Vasileios.Kalintiris at imgtec.com
Thu Jul 30 06:13:09 PDT 2015


Author: vkalintiris
Date: Thu Jul 30 08:13:09 2015
New Revision: 243640

URL: http://llvm.org/viewvc/llvm-project?rev=243640&view=rev
Log:
[mips] Fix out-of-date debug information in test file.

Update the debug info in the check-lines because the change in r243638
introduced a constant initialization before the prologue's end as part
of a register spill.

Modified:
    llvm/trunk/test/DebugInfo/Mips/delay-slot.ll

Modified: llvm/trunk/test/DebugInfo/Mips/delay-slot.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/Mips/delay-slot.ll?rev=243640&r1=243639&r2=243640&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/Mips/delay-slot.ll (original)
+++ llvm/trunk/test/DebugInfo/Mips/delay-slot.ll Thu Jul 30 08:13:09 2015
@@ -13,12 +13,14 @@
 ; CHECK: Address            Line   Column File   ISA Discriminator Flags
 ; CHECK: ------------------ ------ ------ ------ --- ------------- -------------
 ; CHECK: 0x0000000000000000      1      0      1   0             0  is_stmt
-; CHECK: 0x0000000000000000      1      0      1   0             0  is_stmt prologue_end
-; CHECK: 0x0000000000000008      2      0      1   0             0  is_stmt
-; CHECK: 0x0000000000000020      3      0      1   0             0  is_stmt
-; CHECK: 0x0000000000000030      4      0      1   0             0  is_stmt
-; CHECK: 0x0000000000000040      5      0      1   0             0  is_stmt
-; CHECK: 0x0000000000000050      5      0      1   0             0  is_stmt end_sequence
+; FIXME: The next address probably ought to be 0x0000000000000004 but there's
+;        a constant initialization before the prologue's end.
+; CHECK: 0x0000000000000008      2      0      1   0             0  is_stmt prologue_end
+; CHECK: 0x0000000000000028      3      0      1   0             0  is_stmt
+; CHECK: 0x0000000000000038      4      0      1   0             0  is_stmt
+; CHECK: 0x0000000000000048      5      0      1   0             0  is_stmt
+; CHECK: 0x0000000000000058      5      0      1   0             0  is_stmt end_sequence
+
 
 target datalayout = "E-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64"
 target triple = "mips--linux-gnu"





More information about the llvm-commits mailing list