-
Notifications
You must be signed in to change notification settings - Fork 15.4k
[CodeGen][NFC] Move test builtin_signbit.cpp to CodeGen #127814
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Because it is one of the three "misplaced" test files that appeared under `/clang/test/Analysis` but were unrelated to the clang static analyzer. For background see the following discourse thread: https://discourse.llvm.org/t/taking-ownership-of-clang-test-analysis/84689/2 I placed this file in `clang/test/CodeGen` because as far as I see it tests the code generated from `__builtin_signbit` (and there are many other `builtin_*` test files in that directory); but I'm not familiar with that area, so I'm not certain that it's the best place.
|
@llvm/pr-subscribers-clang Author: Donát Nagy (NagyDonat) ChangesBecause it is one of the three "misplaced" test files that appeared under I placed this file in Full diff: https://github.com/llvm/llvm-project/pull/127814.diff 1 Files Affected:
diff --git a/clang/test/Analysis/builtin_signbit.cpp b/clang/test/CodeGen/builtin_signbit.cpp
similarity index 100%
rename from clang/test/Analysis/builtin_signbit.cpp
rename to clang/test/CodeGen/builtin_signbit.cpp
|
nikic
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/73/builds/13334 Here is the relevant piece of the build log for the reference |
|
The CI failure is in a completely unrelated test file; I'm pretty confident that it's unrelated to my commit. |
Because it is one of the three "misplaced" test files that appeared under
/clang/test/Analysisbut were unrelated to the clang static analyzer. For background see the following discourse thread: https://discourse.llvm.org/t/taking-ownership-of-clang-test-analysis/84689/2I placed this file in
clang/test/CodeGenbecause as far as I see it tests the code generated from__builtin_signbit(and there are many otherbuiltin_*test files in that directory); but I'm not familiar with that area, so I'm not certain that it's the best place.