X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FX86%2Fsub.ll;h=3cf79a3deca2742fb3f91f8b44b45696ade9c2d0;hb=6e961aa243f223ddb704ce708056238d7c1d7e24;hp=2a4d2d6e3fce70c885f8dec6ae572ef389966a29;hpb=162ee5c725fdfd327243dc11520afb88659f2ed4;p=oota-llvm.git diff --git a/test/CodeGen/X86/sub.ll b/test/CodeGen/X86/sub.ll index 2a4d2d6e3fc..3cf79a3deca 100644 --- a/test/CodeGen/X86/sub.ll +++ b/test/CodeGen/X86/sub.ll @@ -1,10 +1,10 @@ -; RUN: llc -march=x86 < sub.ll | FileCheck %s +; RUN: llc -march=x86 < %s | FileCheck %s define i32 @test1(i32 %x) { %xor = xor i32 %x, 31 %sub = sub i32 32, %xor ret i32 %sub -; CHECK: test1: +; CHECK-LABEL: test1: ; CHECK: xorl $-32 ; CHECK-NEXT: addl $33 ; CHECK-NEXT: ret