diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-02-13 01:28:16 +0000 |
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-02-13 01:28:16 +0000 |
| commit | 890533e987c8ba71e09ea3cac19061d520dbbf23 (patch) | |
| tree | 6aff55d4738897e4bfffefca28a68f96b3a2dc6a /llvm/test | |
| parent | 19fc5ed7db7bea9cd51345667d708b494258cbf7 (diff) | |
| download | bcm5719-llvm-890533e987c8ba71e09ea3cac19061d520dbbf23.tar.gz bcm5719-llvm-890533e987c8ba71e09ea3cac19061d520dbbf23.zip | |
AsmWriter: MDSubprogram: Recognize DW_VIRTUALITY in 'virtuality'
llvm-svn: 229015
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/Assembler/mdsubprogram.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Assembler/mdsubprogram.ll b/llvm/test/Assembler/mdsubprogram.ll index cbf907b6107..ba05bd21e69 100644 --- a/llvm/test/Assembler/mdsubprogram.ll +++ b/llvm/test/Assembler/mdsubprogram.ll @@ -15,12 +15,12 @@ declare void @_Z3foov() !6 = distinct !{} !7 = distinct !{} -; CHECK: !8 = !MDSubprogram(scope: !0, name: "foo", linkageName: "_Zfoov", file: !2, line: 7, type: !3, isLocal: true, isDefinition: false, scopeLine: 8, containingType: !4, virtuality: 2, virtualIndex: 10, flags: 11, isOptimized: true, function: void ()* @_Z3foov, templateParams: !5, declaration: !6, variables: !7) +; CHECK: !8 = !MDSubprogram(scope: !0, name: "foo", linkageName: "_Zfoov", file: !2, line: 7, type: !3, isLocal: true, isDefinition: false, scopeLine: 8, containingType: !4, virtuality: DW_VIRTUALITY_pure_virtual, virtualIndex: 10, flags: 11, isOptimized: true, function: void ()* @_Z3foov, templateParams: !5, declaration: !6, variables: !7) !8 = !MDSubprogram(scope: !0, name: "foo", linkageName: "_Zfoov", file: !2, line: 7, type: !3, isLocal: true, isDefinition: false, scopeLine: 8, containingType: !4, - virtuality: 2, virtualIndex: 10, flags: 11, - isOptimized: true, function: void ()* @_Z3foov, + virtuality: DW_VIRTUALITY_pure_virtual, virtualIndex: 10, + flags: 11, isOptimized: true, function: void ()* @_Z3foov, templateParams: !5, declaration: !6, variables: !7) ; CHECK: !9 = !MDSubprogram(scope: null, name: "bar", isLocal: false, isDefinition: true, isOptimized: false) |

