mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2026-07-16 03:44:10 -04:00
Fixed bot failure after d20bf5a7258d4b6a7
There were some bot failures due unused funtion `rotateSign` left in code. http://lab.llvm.org:8011/builders/clang-ppc64le-rhel/builds/3731 error: unused function 'rotateSign' [-Werror,-Wunused-function] static uint64_t rotateSign(int64_t I)
This commit is contained in:
committed by
Sourabh Singh Tomar
parent
f463d29a62
commit
254b7710b8
@@ -1519,11 +1519,6 @@ void ModuleBitcodeWriter::writeGenericDINode(const GenericDINode *N,
|
||||
Record.clear();
|
||||
}
|
||||
|
||||
static uint64_t rotateSign(int64_t I) {
|
||||
uint64_t U = I;
|
||||
return I < 0 ? ~(U << 1) : U << 1;
|
||||
}
|
||||
|
||||
void ModuleBitcodeWriter::writeDISubrange(const DISubrange *N,
|
||||
SmallVectorImpl<uint64_t> &Record,
|
||||
unsigned Abbrev) {
|
||||
|
||||
Reference in New Issue
Block a user