[clang-tools-extra] r314811 - [clang-tidy] Remove target specification hicpp-signed-bitwise
Jonas Toth via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 3 09:27:41 PDT 2017
Author: jonastoth
Date: Tue Oct 3 09:27:41 2017
New Revision: 314811
URL: http://llvm.org/viewvc/llvm-project?rev=314811&view=rev
Log:
[clang-tidy] Remove target specification hicpp-signed-bitwise
This patch removes the targetspecification of a testcase, that broke
for ARM. The underlying problem was fixed which makes it unnecessary to
specify the target architecture (problem was the signedness of `char`).
Committing without review was accepted in https://reviews.llvm.org/D38399
by aaron.ballman.
Modified:
clang-tools-extra/trunk/test/clang-tidy/hicpp-signed-bitwise.cpp
Modified: clang-tools-extra/trunk/test/clang-tidy/hicpp-signed-bitwise.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/hicpp-signed-bitwise.cpp?rev=314811&r1=314810&r2=314811&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/hicpp-signed-bitwise.cpp (original)
+++ clang-tools-extra/trunk/test/clang-tidy/hicpp-signed-bitwise.cpp Tue Oct 3 09:27:41 2017
@@ -1,4 +1,4 @@
-// RUN: %check_clang_tidy %s hicpp-signed-bitwise %t -- -- -std=c++11 -target x86_64-unknown-unknown
+// RUN: %check_clang_tidy %s hicpp-signed-bitwise %t -- -- -std=c++11
// These could cause false positives and should not be considered.
struct StreamClass {
More information about the cfe-commits
mailing list