view test/MC/AsmParser/ifeqs.s @ 121:803732b1fca8

LLVM 5.0
author kono
date Fri, 27 Oct 2017 17:07:41 +0900
parents 54457678186b
children
line wrap: on
line source

// RUN: llvm-mc -triple i386 %s | FileCheck %s

.ifeqs "alpha", "alpha"
	.byte 1
.else
	.byte 0
.endif

// CHECK-NOT: .byte 0
// CHECK: .byte 1

.ifeqs "alpha", "alpha "
	.byte 0
.else
	.byte 1
.endif

// CHECK-NOT: .byte 0
// CHECK: .byte 1