From 46b99898374fee88fb4aa8172aa741104c932863 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 11 Nov 2014 20:49:16 +0000 Subject: [PATCH] Simplify testcase. NFC. Thanks to Filipe Cabecinhas for the tip. llvm-svn: 221705 --- test/CodeGen/X86/pr21529.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/X86/pr21529.ll b/test/CodeGen/X86/pr21529.ll index 9da73dd4095..655bc844f50 100644 --- a/test/CodeGen/X86/pr21529.ll +++ b/test/CodeGen/X86/pr21529.ll @@ -1,11 +1,11 @@ -; RUN: llc -filetype=obj < %s | llvm-objdump -d - | FileCheck %s +; RUN: llc -show-mc-encoding < %s | FileCheck %s ; Test that the direct object emission selects the and variant with 8 bit ; immediate. ; We used to get this wrong when using direct object emission, but not when ; reading assembly. -; CHECK: 48 83 e4 e0 andq $-32, %rsp +; CHECK: andq $-32, %rsp # encoding: [0x48,0x83,0xe4,0xe0] target triple = "x86_64-pc-linux"