Skip to content

Commit

Permalink
Add a WONTFIX message to a failing test.
Browse files Browse the repository at this point in the history
  • Loading branch information
nrc committed May 26, 2015
1 parent 1d00028 commit ff68204
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/librustc_trans/back/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ pub fn sanitize(s: &str) -> String {
}

pub fn mangle<PI: Iterator<Item=PathElem>>(path: PI,
hash: Option<&str>) -> String {
hash: Option<&str>) -> String {
// Follow C++ namespace-mangling style, see
// http://en.wikipedia.org/wiki/Name_mangling for more info.
//
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_trans/back/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ struct HandlerFreeVars<'a> {
}

unsafe extern "C" fn report_inline_asm<'a, 'b>(cgcx: &'a CodegenContext<'a>,
msg: &'b str,
cookie: c_uint) {
msg: &'b str,
cookie: c_uint) {
use syntax::codemap::ExpnId;

match cgcx.lto_ctxt {
Expand Down
3 changes: 2 additions & 1 deletion src/test/compile-fail/asm-src-loc-codegen-units.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-stage1 (#20184)
// WONTFIX(#20184) Needs landing pads (not present in stage1) or the compiler hangs.
// ignore-stage1
// compile-flags: -C codegen-units=2
// error-pattern: build without -C codegen-units for more exact errors

Expand Down

0 comments on commit ff68204

Please sign in to comment.