[clang] Fix a unit test input file (PR #102567)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 8 21:55:53 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang-driver
Author: Ian Anderson (ian-twilightcoder)
<details>
<summary>Changes</summary>
I forgot to update the version info in the SDKSettings file when I updated it to the real version relevant to the test. The version in the SDKSettings file isn't actually used for anything in the test, but might as well have realistic values.
---
Full diff: https://github.com/llvm/llvm-project/pull/102567.diff
1 Files Affected:
- (modified) clang/test/Driver/Inputs/MacOSX15.0.sdk/SDKSettings.json (+1-1)
``````````diff
diff --git a/clang/test/Driver/Inputs/MacOSX15.0.sdk/SDKSettings.json b/clang/test/Driver/Inputs/MacOSX15.0.sdk/SDKSettings.json
index 77b70e1a83c19c..ced45d5c219962 100644
--- a/clang/test/Driver/Inputs/MacOSX15.0.sdk/SDKSettings.json
+++ b/clang/test/Driver/Inputs/MacOSX15.0.sdk/SDKSettings.json
@@ -1 +1 @@
-{"Version":"990.0", "MaximumDeploymentTarget": "99.0.99"}
+{"Version":"15.0", "MaximumDeploymentTarget": "15.0.99"}
``````````
</details>
https://github.com/llvm/llvm-project/pull/102567
More information about the cfe-commits
mailing list