-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate LLVM at llvm/llvm-project@eacdbc269e5f
Updates LLVM usage to match [eacdbc269e5f](llvm/llvm-project@eacdbc269e5f) PiperOrigin-RevId: 705080662
- Loading branch information
1 parent
56a32c0
commit 494ea67
Showing
2 changed files
with
9 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,12 @@ | ||
Auto generated patch. Do not edit or delete it, even if empty. | ||
diff -ruN --strip-trailing-cr a/clang/test/CodeGen/AArch64/fixed-register-global.c b/clang/test/CodeGen/AArch64/fixed-register-global.c | ||
--- a/clang/test/CodeGen/AArch64/fixed-register-global.c | ||
+++ b/clang/test/CodeGen/AArch64/fixed-register-global.c | ||
@@ -2,13 +2,13 @@ | ||
/// Regression test for #76426, #109778 | ||
diff -ruN --strip-trailing-cr a/clang/test/Sema/aarch64-sve2-intrinsics/acle_sve2_fp8.c b/clang/test/Sema/aarch64-sve2-intrinsics/acle_sve2_fp8.c | ||
--- a/clang/test/Sema/aarch64-sve2-intrinsics/acle_sve2_fp8.c | ||
+++ b/clang/test/Sema/aarch64-sve2-intrinsics/acle_sve2_fp8.c | ||
@@ -1,6 +1,6 @@ | ||
// REQUIRES: aarch64-registered-target | ||
|
||
-// RUN: %clang -c --target=aarch64-none-gnu -ffixed-x15 %s 2>&1 | count 0 | ||
+// RUN: %clang -c --target=aarch64-none-gnu -ffixed-x15 %s -o /dev/null 2>&1 | count 0 | ||
-// RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -verify -emit-llvm %s | ||
+// RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -verify -emit-llvm -o - %s | ||
|
||
-// RUN: not %clang -c --target=aarch64-none-gnu %s 2>&1 | \ | ||
+// RUN: not %clang -c --target=aarch64-none-gnu %s -o /dev/null 2>&1 | \ | ||
// RUN: FileCheck %s --check-prefix=ERR_INVREG | ||
// ERR_INVREG: error: register 'x15' unsuitable for global register variables on this target | ||
#include <arm_sve.h> | ||
|
||
-// RUN: not %clang -c --target=aarch64-none-gnu -ffixed-x15 -DTYPE=short %s 2>&1 | \ | ||
+// RUN: not %clang -c --target=aarch64-none-gnu -ffixed-x15 -DTYPE=short %s -o /dev/null 2>&1 | \ | ||
// RUN: FileCheck %s --check-prefix=ERR_SIZE | ||
// ERR_SIZE: error: size of register 'x15' does not match variable size | ||
|
||
diff -ruN --strip-trailing-cr a/clang/test/Driver/config-file.c b/clang/test/Driver/config-file.c | ||
--- a/clang/test/Driver/config-file.c | ||
+++ b/clang/test/Driver/config-file.c | ||
@@ -85,9 +85,9 @@ | ||
|
||
//--- The linker input flags should be moved to the end of input list and appear only when linking. | ||
// RUN: %clang --target=aarch64-unknown-linux-gnu --config %S/Inputs/config-l.cfg %s -lmylib -Wl,foo.a -### 2>&1 | FileCheck %s -check-prefix CHECK-LINKING | ||
-// RUN: %clang --target=aarch64-unknown-linux-gnu --config %S/Inputs/config-l.cfg -fopenmp %s -lmylib -Wl,foo.a -### 2>&1 | FileCheck %s -check-prefix CHECK-LINKING-LIBOMP-GOES-AFTER | ||
+// RUN: %clang --target=aarch64-unknown-linux-gnu --config %S/Inputs/config-l.cfg -fopenmp=libomp %s -lmylib -Wl,foo.a -### 2>&1 | FileCheck %s -check-prefix CHECK-LINKING-LIBOMP-GOES-AFTER | ||
// RUN: %clang --target=aarch64-unknown-linux-gnu --config %S/Inputs/config-l.cfg -S %s -### 2>&1 | FileCheck %s -check-prefix CHECK-NOLINKING | ||
-// RUN: %clang --target=aarch64-unknown-linux-gnu --config %S/Inputs/config-l.cfg -fopenmp -S %s -### 2>&1 | FileCheck %s -check-prefix CHECK-NOLINKING-OPENMP | ||
+// RUN: %clang --target=aarch64-unknown-linux-gnu --config %S/Inputs/config-l.cfg -fopenmp=libomp -S %s -### 2>&1 | FileCheck %s -check-prefix CHECK-NOLINKING-OPENMP | ||
// RUN: %clang --target=x86_64-pc-windows-msvc --config %S/Inputs/config-l.cfg %s -lmylib -Wl,foo.lib -### 2>&1 | FileCheck %s -check-prefix CHECK-LINKING-MSVC | ||
// RUN: %clang --target=x86_64-pc-windows-msvc --config %S/Inputs/config-l.cfg -S %s -### 2>&1 | FileCheck %s -check-prefix CHECK-NOLINKING-MSVC | ||
// CHECK-LINKING: Configuration file: {{.*}}Inputs{{.}}config-l.cfg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters