diff options
author | Zack Rusin <[email protected]> | 2007-10-24 19:20:19 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2007-10-24 19:20:32 -0400 |
commit | 1c5fec714d30c02d6d00d95215c2e302c4c65cc3 (patch) | |
tree | 084ff82f7b39e25c17447ba211295f963fcf6b17 /src/mesa/pipe/llvm/instructions.cpp | |
parent | 7636aac54bb357ce907ae6cc2c41f32957faecf3 (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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/llvm/instructions.cpp b/src/mesa/pipe/llvm/instructions.cpp index 6ded3f1249d..622d420f64d 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; |