1 # RUN: not llvm-mc -filetype=obj -triple i386-unknown-unknown %s 2> %t 2 # RUN: FileCheck -input-file %t %s 3 4 . = 0x10 5 .byte 1 6 7 . = . + 10 8 .byte 2 9 10 # CHECK: LLVM ERROR: invalid .org offset '24' (at offset '28') 11 . = 0x18 12 .byte 3 13