mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Join two lines that can be joined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34705 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9d3c519233
commit
f5c0fd9e16
@ -42,8 +42,7 @@ inline static uint64_t* getMemory(uint32_t numWords) {
|
||||
return result;
|
||||
}
|
||||
|
||||
APInt::APInt(uint32_t numBits, uint64_t val)
|
||||
: BitWidth(numBits), VAL(0) {
|
||||
APInt::APInt(uint32_t numBits, uint64_t val) : BitWidth(numBits), VAL(0) {
|
||||
assert(BitWidth >= IntegerType::MIN_INT_BITS && "bitwidth too small");
|
||||
assert(BitWidth <= IntegerType::MAX_INT_BITS && "bitwidth too large");
|
||||
if (isSingleWord())
|
||||
|
Loading…
Reference in New Issue
Block a user