line_continuations.test 215 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 # RUN: llvm-ml -filetype=asm %s | FileCheck %s .code t1: mov eax, \ ebx # CHECK: t1: # CHECK-NEXT: mov eax, ebx t2: mov eax, [ebx + \ 1] # CHECK: t2: # CHECK-NEXT: mov eax, dword ptr [ebx + 1] END