summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/llvm/instructions.cpp
diff options
context:
space:
mode:
authorZack Rusin <zack@tungstengraphics.com>2007-10-24 19:20:19 -0400
committerZack Rusin <zack@tungstengraphics.com>2007-10-24 19:20:32 -0400
commit1c5fec714d30c02d6d00d95215c2e302c4c65cc3 (patch)
tree084ff82f7b39e25c17447ba211295f963fcf6b17 /src/mesa/pipe/llvm/instructions.cpp
parent7636aac54bb357ce907ae6cc2c41f32957faecf3 (diff)
Simplify branch handling. Prepare for proper decleration extraction.
Diffstat (limited to 'src/mesa/pipe/llvm/instructions.cpp')
-rw-r--r--src/mesa/pipe/llvm/instructions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/llvm/instructions.cpp b/src/mesa/pipe/llvm/instructions.cpp
index 6ded3f1249..622d420f64 100644
--- a/src/mesa/pipe/llvm/instructions.cpp
+++ b/src/mesa/pipe/llvm/instructions.cpp
@@ -968,7 +968,7 @@ void Instructions::ifop(llvm::Value *in)
m_block);
FCmpInst *xcmp = new FCmpInst(FCmpInst::FCMP_UNE, x, float0,
name("xcmp"), m_block);
- new BranchInst(ifend, ifthen, xcmp, m_block);
+ new BranchInst(ifthen, ifend, xcmp, m_block);
//m_block = yblock;