From 52396bb9c55044063c25bc19e8f22e32d4df11e3 Mon Sep 17 00:00:00 2001 From: Krzysztof Parzyszek Date: Tue, 27 Mar 2018 16:44:41 +0000 Subject: Use .set instead of = when printing assignment in assembly output On Hexagon "x = y" is a syntax used in most instructions, and is not treated as a directive. Differential Revision: https://reviews.llvm.org/D44256 llvm-svn: 328635 --- llvm/test/CodeGen/X86/coff-comdat.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/test/CodeGen/X86/coff-comdat.ll') diff --git a/llvm/test/CodeGen/X86/coff-comdat.ll b/llvm/test/CodeGen/X86/coff-comdat.ll index 712825a9910..d1fe27ac811 100644 --- a/llvm/test/CodeGen/X86/coff-comdat.ll +++ b/llvm/test/CodeGen/X86/coff-comdat.ll @@ -89,4 +89,4 @@ $vftable = comdat largest ; CHECK: .globl _f6 ; CHECK: .section .rdata,"dr",largest,_vftable ; CHECK: .globl _vftable -; CHECK: _vftable = L_some_name+4 +; CHECK: .set _vftable, L_some_name+4 -- cgit v1.2.3