[llvm] r221705 - Simplify testcase. NFC.

Rafael Espindola rafael.espindola at gmail.com
Tue Nov 11 12:49:16 PST 2014


Author: rafael
Date: Tue Nov 11 14:49:16 2014
New Revision: 221705

URL: http://llvm.org/viewvc/llvm-project?rev=221705&view=rev
Log:
Simplify testcase. NFC.

Thanks to Filipe Cabecinhas for the tip.

Modified:
    llvm/trunk/test/CodeGen/X86/pr21529.ll

Modified: llvm/trunk/test/CodeGen/X86/pr21529.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/pr21529.ll?rev=221705&r1=221704&r2=221705&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/pr21529.ll (original)
+++ llvm/trunk/test/CodeGen/X86/pr21529.ll Tue Nov 11 14:49:16 2014
@@ -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"
 





More information about the llvm-commits mailing list