Home | History | Annotate | Download | only in AsmParser
      1 // RUN: llvm-mc -triple x86_64-unknown-unknown-elf %s | FileCheck %s
      2 // RUN: llvm-mc -triple x86_64-unknown-darwin %s | FileCheck %s
      3 // RUN: llvm-mc -triple x86_64-pc-windows-msvc %s | FileCheck %s --check-prefix=MSVC
      4 
      5 .data
      6 
      7 // CHECK: .quad 3
      8 
      9 // MSVC does AShr.
     10 // MSVC: .quad -1
     11 
     12 .quad (~0 >> 62)
     13