about summary refs log tree commit diff
path: root/src/rustllvm/ExecutionEngineWrapper.cpp
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-06-30 00:14:32 +0000
committerbors <bors@rust-lang.org>2015-06-30 00:14:32 +0000
commitfaa04a8b9c326bb71b1d21e962dd96912ce234c6 (patch)
tree03e0951628efe6ce396fc362230de47bcf74c4bd /src/rustllvm/ExecutionEngineWrapper.cpp
parent9a26e49459b4069650dd23e5ba35acd5eb868f2e (diff)
parent900af2c6d9b21ca1b1db35b7b09b0fb59cf78b84 (diff)
downloadrust-faa04a8b9c326bb71b1d21e962dd96912ce234c6.tar.gz
rust-faa04a8b9c326bb71b1d21e962dd96912ce234c6.zip
Auto merge of #26666 - huonw:unc-rec, r=alexcrichton
This fixes two false positives for the unconditional recursion lint, when functions use themselves (or almost-themselves) internally, without actually being recursive.

````rust
fn main() { let _ = main; }
```
```rust
trait Bar {
    fn method<T: Bar>(&self, x: &T) {
        x.method(x)
    }
}
```
Diffstat (limited to 'src/rustllvm/ExecutionEngineWrapper.cpp')
0 files changed, 0 insertions, 0 deletions