mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 17:34:41 +00:00
Wrap long line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24320 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
277973bf23
commit
ba0ffcc1bc
@ -948,7 +948,8 @@ void BytecodeWriter::outputModuleInfoBlock(const Module *M) {
|
||||
|
||||
// The extension word has this format: bit 0 = has initializer, bit 1-3 =
|
||||
// linkage, bit 4-8 = alignment (log2), bits 10+ = future use.
|
||||
unsigned ExtWord = (unsigned)I->hasInitializer() | (getEncodedLinkage(I) << 1) |
|
||||
unsigned ExtWord = (unsigned)I->hasInitializer() |
|
||||
(getEncodedLinkage(I) << 1) |
|
||||
((Log2_32(I->getAlignment())+1) << 4);
|
||||
output_vbr(ExtWord);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user