mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-15 06:18:50 +00:00
Disable r235989 "Reapply r235977 "[DebugInfo] Add debug locations to constant SD nodes""
Will be re-enabled with missing changes for ConstantFPSDNode and fixes for wrong locations due to constant coalescing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236758 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
46fa0aabcb
commit
5ef2a17a62
@ -1401,10 +1401,11 @@ public:
|
||||
class ConstantSDNode : public SDNode {
|
||||
const ConstantInt *Value;
|
||||
friend class SelectionDAG;
|
||||
// XXX: DebugLoc is unused intentionally until constant coalescing is resolved
|
||||
ConstantSDNode(bool isTarget, bool isOpaque, const ConstantInt *val,
|
||||
DebugLoc DL, EVT VT)
|
||||
DebugLoc, EVT VT)
|
||||
: SDNode(isTarget ? ISD::TargetConstant : ISD::Constant,
|
||||
0, DL, getSDVTList(VT)), Value(val) {
|
||||
0, DebugLoc(), getSDVTList(VT)), Value(val) {
|
||||
SubclassData |= (uint16_t)isOpaque;
|
||||
}
|
||||
public:
|
||||
|
@ -1,4 +1,6 @@
|
||||
; RUN: llc -filetype=asm %s -o - | FileCheck %s
|
||||
; XFAIL: *
|
||||
; disabled until constant coalescing is resolved
|
||||
|
||||
target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
|
||||
target triple = "aarch64--linux-gnueabihf"
|
||||
|
@ -1,4 +1,6 @@
|
||||
; RUN: llc -filetype=asm %s -o - | FileCheck %s
|
||||
; XFAIL: *
|
||||
; disabled until constant coalescing is resolved
|
||||
|
||||
target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
|
||||
target triple = "armv7--linux-gnueabihf"
|
||||
|
@ -1,5 +1,7 @@
|
||||
; RUN: llc -debug < %s 2>&1 | FileCheck %s
|
||||
; REQUIRES: asserts
|
||||
; XFAIL: *
|
||||
; disabled until constant coalescing is resolved
|
||||
|
||||
; CHECK: 0x{{[0-9,a-f]+}}: i32 = Constant<-1>test.c:4:5
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user