summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-04-29 23:12:38 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-04-29 23:12:38 +0000
commit78fc9c53e5e9dd0f11d470459c8efe7472ca03e5 (patch)
treeeec3faec81dd67fb210ff3461f2f1cf4dffd7649 /lib
parent5253c5ca5d5319a38d6ee842f2836b6994f4024d (diff)
downloadllvm-78fc9c53e5e9dd0f11d470459c8efe7472ca03e5.tar.gz
llvm-78fc9c53e5e9dd0f11d470459c8efe7472ca03e5.tar.bz2
llvm-78fc9c53e5e9dd0f11d470459c8efe7472ca03e5.tar.xz
R600: remove unused variable
Patch by: Jan Vesely Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu> Reviewed-by: Tom Stellard <thomas.stellard@amd.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207586 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/R600/AMDGPUISelLowering.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/R600/AMDGPUISelLowering.cpp b/lib/Target/R600/AMDGPUISelLowering.cpp
index 5a534627bc..2f846ced3a 100644
--- a/lib/Target/R600/AMDGPUISelLowering.cpp
+++ b/lib/Target/R600/AMDGPUISelLowering.cpp
@@ -952,8 +952,6 @@ SDValue AMDGPUTargetLowering::LowerUDIVREM(SDValue Op,
SDValue Num = Op.getOperand(0);
SDValue Den = Op.getOperand(1);
- SmallVector<SDValue, 8> Results;
-
// RCP = URECIP(Den) = 2^32 / Den + e
// e is rounding error.
SDValue RCP = DAG.getNode(AMDGPUISD::URECIP, DL, VT, Den);