Duncan P. N. Exon Smith | 13d5c58 | 2016-04-06 02:06:40 +0000 | [diff] [blame] | 1 | ; RUN: not llvm-as < %s 2>&1 | FileCheck %s |
2 | ; Check that !tbaa upgrade doesn't crash on undefined metadata (it should give | ||||
3 | ; an error). | ||||
4 | |||||
5 | define void @foo() { | ||||
6 | entry: | ||||
7 | store i8 undef, i8* undef, | ||||
8 | ; CHECK: :[[@LINE+1]]:10: error: use of undefined metadata '!1' | ||||
9 | !tbaa !1 | ||||
10 | unreachable | ||||
11 | } |