From ae3a0be92e33bc716722aa600983fc1535acb122 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 4 Jun 2009 22:49:04 +0000 Subject: Split the Add, Sub, and Mul instruction opcodes into separate integer and floating-point opcodes, introducing FAdd, FSub, and FMul. For now, the AsmParser, BitcodeReader, and IRBuilder all preserve backwards compatability, and the Core LLVM APIs preserve backwards compatibility for IR producers. Most front-ends won't need to change immediately. This implements the first step of the plan outlined here: http://nondot.org/sabre/LLVMNotes/IntegerOverflow.txt git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72897 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/pre-split6.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/CodeGen/X86/pre-split6.ll') diff --git a/test/CodeGen/X86/pre-split6.ll b/test/CodeGen/X86/pre-split6.ll index 7808223..e771b80 100644 --- a/test/CodeGen/X86/pre-split6.ll +++ b/test/CodeGen/X86/pre-split6.ll @@ -20,14 +20,14 @@ bb.nph: ; preds = %entry bb9.i: ; preds = %bb.nph %3 = tail call double @asin(double 0.000000e+00) nounwind readonly ; [#uses=0] %4 = fdiv double 1.000000e+00, %1 ; [#uses=1] - %5 = mul double %4, 0.000000e+00 ; [#uses=1] + %5 = fmul double %4, 0.000000e+00 ; [#uses=1] %6 = tail call double @asin(double %5) nounwind readonly ; [#uses=0] unreachable bb13.i: ; preds = %bb.nph %7 = fdiv double 1.000000e+00, %1 ; [#uses=1] %8 = tail call double @sin(double 0.000000e+00) nounwind readonly ; [#uses=1] - %9 = mul double %7, %8 ; [#uses=1] + %9 = fmul double %7, %8 ; [#uses=1] %10 = tail call double @asin(double %9) nounwind readonly ; [#uses=0] unreachable -- cgit v1.1