diff options
| author | bors <bors@rust-lang.org> | 2015-06-30 00:14:32 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-06-30 00:14:32 +0000 |
| commit | faa04a8b9c326bb71b1d21e962dd96912ce234c6 (patch) | |
| tree | 03e0951628efe6ce396fc362230de47bcf74c4bd /src/rustllvm/ExecutionEngineWrapper.cpp | |
| parent | 9a26e49459b4069650dd23e5ba35acd5eb868f2e (diff) | |
| parent | 900af2c6d9b21ca1b1db35b7b09b0fb59cf78b84 (diff) | |
| download | rust-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
