Fix a buildbot failure introduced by r290960.

The commit r290960 checked the the basic block label name which isn't there
when clang is compiled in release mode.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@290968 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alex Lorenz 2017-01-04 15:07:13 +00:00
parent 8fca6cf596
commit c9c73f6248
1 changed files with 1 additions and 3 deletions

View File

@ -15,13 +15,11 @@ int no_return() {
// -fno-strict-return should not emit trap + unreachable but it should return
// an undefined value instead.
// CHECK-NOSTRICT: entry:
// CHECK-NOSTRICT-NEXT: alloca
// CHECK-NOSTRICT: alloca
// CHECK-NOSTRICT-NEXT: load
// CHECK-NOSTRICT-NEXT: ret i32
// CHECK-NOSTRICT-NEXT: }
// CHECK-NOSTRICT-OPT: entry:
// CHECK-NOSTRICT-OPT: ret i32 undef
}