From a61a19037a9dbf43800e2bbdda250f86625aa59e Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Mon, 17 Nov 2014 08:00:45 +0000 Subject: [PATCH] Fix CR/LF line endings in test case. llvm-svn: 222120 --- llvm/test/CodeGen/X86/TruncAssertZext.ll | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/llvm/test/CodeGen/X86/TruncAssertZext.ll b/llvm/test/CodeGen/X86/TruncAssertZext.ll index 2d78b5f..8c66412 100644 --- a/llvm/test/CodeGen/X86/TruncAssertZext.ll +++ b/llvm/test/CodeGen/X86/TruncAssertZext.ll @@ -1,16 +1,16 @@ -; RUN: llc < %s -O2 -march=x86-64 | FileCheck %s -; Checks that a zeroing mov is inserted for the trunc/zext pair even when -; the source of the zext is an AssertSext node -; PR20494 - -define i64 @main(i64 %a) { -; CHECK-LABEL: main -; CHECK: movl %e{{..}}, %eax -; CHECK: ret - %or = or i64 %a, -2 - %trunc = trunc i64 %or to i32 - br label %l -l: - %ext = zext i32 %trunc to i64 - ret i64 %ext -} +; RUN: llc < %s -O2 -march=x86-64 | FileCheck %s +; Checks that a zeroing mov is inserted for the trunc/zext pair even when +; the source of the zext is an AssertSext node +; PR20494 + +define i64 @main(i64 %a) { +; CHECK-LABEL: main +; CHECK: movl %e{{..}}, %eax +; CHECK: ret + %or = or i64 %a, -2 + %trunc = trunc i64 %or to i32 + br label %l +l: + %ext = zext i32 %trunc to i64 + ret i64 %ext +} -- 2.7.4