[llvm] Add triple target to buildtype.ll in X86 (PR #145764)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 25 11:49:55 PDT 2025
https://github.com/badumbatish created https://github.com/llvm/llvm-project/pull/145764
Fixes issue #145416.
Tagging @RKSimon for approval
>From e37098fe29f237421b9e82428d8873eb94155dae Mon Sep 17 00:00:00 2001
From: badumbatish <jjasmine at igalia.com>
Date: Wed, 25 Jun 2025 11:48:02 -0700
Subject: [PATCH] Add triple target to buildtype.ll in X86
---
llvm/test/DebugInfo/assignment-tracking/X86/large-type.ll | 2 ++
1 file changed, 2 insertions(+)
diff --git a/llvm/test/DebugInfo/assignment-tracking/X86/large-type.ll b/llvm/test/DebugInfo/assignment-tracking/X86/large-type.ll
index cebbc162fcb3a..b178392eb9508 100644
--- a/llvm/test/DebugInfo/assignment-tracking/X86/large-type.ll
+++ b/llvm/test/DebugInfo/assignment-tracking/X86/large-type.ll
@@ -1,6 +1,8 @@
; RUN: llc %s -stop-after=finalize-isel -o - \
; RUN: | FileCheck %s --implicit-check-not=DBG_
+target triple = "x86_64-unknown-linux-gnu"
+
;; Based on optimized IR from C source:
;; int main () {
;; char a1[__INT_MAX__];
More information about the llvm-commits
mailing list