Skip to content

Commit

Permalink
subgroup: resolve some fixmes
Browse files Browse the repository at this point in the history
  • Loading branch information
exrook committed Oct 19, 2023
1 parent 4bdb41d commit 92b4a6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/compact/expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl<'tracer> ExpressionTracer<'tracer> {
| Ex::GlobalVariable(_)
| Ex::LocalVariable(_)
| Ex::CallResult(_)
| Ex::SubgroupBallotResult // FIXME: ???
| Ex::SubgroupBallotResult
| Ex::RayQueryProceedResult => {}

Ex::Constant(handle) => {
Expand Down Expand Up @@ -224,7 +224,7 @@ impl ModuleMap {
| Ex::GlobalVariable(_)
| Ex::LocalVariable(_)
| Ex::CallResult(_)
| Ex::SubgroupBallotResult // FIXME: ???
| Ex::SubgroupBallotResult
| Ex::RayQueryProceedResult => {}

// Expressions that contain handles that need to be adjusted.
Expand Down
2 changes: 1 addition & 1 deletion src/valid/analyzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ impl FunctionInfo {
argument,
result: _,
} => {
let _ = self.add_ref(argument); // FIXME
let _ = self.add_ref(argument);
FunctionUniformity::new()
}
S::SubgroupBroadcast {
Expand Down

0 comments on commit 92b4a6b

Please sign in to comment.