You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
300 B
13 lines
300 B
// RUN: llvm-mc -triple x86_64-unknown-unknown-elf %s | FileCheck %s
|
|
// RUN: llvm-mc -triple x86_64-unknown-darwin %s | FileCheck %s
|
|
// RUN: llvm-mc -triple x86_64-pc-windows-msvc %s | FileCheck %s --check-prefix=MSVC
|
|
|
|
.data
|
|
|
|
// CHECK: .quad 3
|
|
|
|
// MSVC does AShr.
|
|
// MSVC: .quad -1
|
|
|
|
.quad (~0 >> 62)
|