[llvm-mca] Add a -mattr flag
[llvm-core.git] / test / Assembler / named-metadata.ll
blob9fa37a7989d4f8757f58ae395fc1fee766bc0494
1 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s
2 ; RUN: verify-uselistorder %s
4 !0 = !{!"zero"}
5 !1 = !{!"one"}
6 !2 = !{!"two"}
8 !foo = !{!0, !1, !2}
9 ; CHECK: !foo = !{!0, !1, !2}
11 !\23pragma = !{!0, !1, !2}
12 ; CHECK: !\23pragma = !{!0, !1, !2}
14 ; \31 is the digit '1'. On emission, we escape the first character (to avoid
15 ; conflicting with anonymous metadata), but not the subsequent ones.
16 !\31\31\31 = !{!0, !1, !2}
17 ; CHECK: !\3111 = !{!0, !1, !2}
19 !\22name\22 = !{!0, !1, !2}
20 ; CHECK: !\22name\22 = !{!0, !1, !2}
22 ; \x doesn't mean anything, so we parse it literally but escape the \ into \5C
23 ; when emitting it, followed by xfoo.
24 !\xfoo = !{!0, !1, !2}
25 ; CHECK: !\5Cxfoo = !{!0, !1, !2}