[llvm] 2ae3a71 - Fix minimal-throw-catch.ll on x86 mac
Leonard Chan via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 12 13:35:21 PDT 2023
Author: Leonard Chan
Date: 2023-10-12T20:34:31Z
New Revision: 2ae3a712304870adf639a33547c1139a7b6304e5
URL: https://github.com/llvm/llvm-project/commit/2ae3a712304870adf639a33547c1139a7b6304e5
DIFF: https://github.com/llvm/llvm-project/commit/2ae3a712304870adf639a33547c1139a7b6304e5.diff
LOG: Fix minimal-throw-catch.ll on x86 mac
It looks like this broke after https://reviews.llvm.org/D86310 and the
data layout just needs to be updated for this test.
Added:
Modified:
llvm/test/ExecutionEngine/OrcLazy/minimal-throw-catch.ll
Removed:
################################################################################
diff --git a/llvm/test/ExecutionEngine/OrcLazy/minimal-throw-catch.ll b/llvm/test/ExecutionEngine/OrcLazy/minimal-throw-catch.ll
index b1e0aea05a5f117..7bbaa0575a3873b 100644
--- a/llvm/test/ExecutionEngine/OrcLazy/minimal-throw-catch.ll
+++ b/llvm/test/ExecutionEngine/OrcLazy/minimal-throw-catch.ll
@@ -4,7 +4,7 @@
; Basic correctness testing for eh-frame processing and registration.
source_filename = "minimal-throw-catch.cpp"
-target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
+target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128"
target triple = "x86_64-apple-macosx10.14.0"
@_ZTIi = external constant ptr
More information about the llvm-commits
mailing list