Commit 71008d88 by Ben Clayton

Reactor: Fix createFCmpUNE (LLVM)

This was just calling the wrong function. Looks like a copy and paste bug. Change-Id: Icde43940f17f467f7602b7a2ce0e5ac1e517c769 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/26208Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Tested-by: 's avatarBen Clayton <bclayton@google.com> Kokoro-Presubmit: kokoro <noreply+kokoro@google.com>
parent ec255730
......@@ -1450,7 +1450,7 @@ namespace rr
Value *Nucleus::createFCmpUNE(Value *lhs, Value *rhs)
{
return V(::builder->CreateFCmpULE(V(lhs), V(rhs)));
return V(::builder->CreateFCmpUNE(V(lhs), V(rhs)));
}
Value *Nucleus::createExtractElement(Value *vector, Type *type, int index)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment