]> granicus.if.org Git - clang/blob - test/CodeGen/backend-unsupported-error.ll
467897b5c93adb5105e5aed8ff0b0f127c28e581
[clang] / test / CodeGen / backend-unsupported-error.ll
1 ; RUN: not %clang_cc1 -triple r600-unknown-unknown -S -o - %s 2>&1 | FileCheck %s
2 ; REQUIRES: amdgpu-registered-target
3
4 ; This is to check that backend errors for unsupported features are formatted correctly
5
6 ; CHECK: error: test.c:2:20: in function bar i32 (): unsupported call to function foo.2
7
8 target triple = "r600-unknown-unknown"
9
10 ; Function Attrs: nounwind uwtable
11 define i32 @bar() #0 !dbg !4 {
12 entry:
13   %call = call i32 @foo(), !dbg !12
14   ret i32 %call, !dbg !13
15 }
16
17 ; Function Attrs: nounwind uwtable
18 define i32 @foo() #0 !dbg !8 {
19 entry:
20   %call = call i32 @bar(), !dbg !14
21   ret i32 %call, !dbg !15
22 }
23
24 attributes #0 = { nounwind uwtable "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
25
26 !llvm.dbg.cu = !{!0}
27 !llvm.module.flags = !{!9, !10}
28 !llvm.ident = !{!11}
29
30 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.9.0", isOptimized: false, runtimeVersion: 0, emissionKind: 1, enums: !2, subprograms: !3)
31 !1 = !DIFile(filename: "test.c", directory: "")
32 !2 = !{}
33 !3 = !{!4, !8}
34 !4 = distinct !DISubprogram(name: "bar", scope: !1, file: !1, line: 2, type: !5, isLocal: false, isDefinition: true, scopeLine: 2, isOptimized: false, variables: !2)
35 !5 = !DISubroutineType(types: !6)
36 !6 = !{!7}
37 !7 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
38 !8 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 3, type: !5, isLocal: false, isDefinition: true, scopeLine: 3, flags: DIFlagPrototyped, isOptimized: false, variables: !2)
39 !9 = !{i32 2, !"Dwarf Version", i32 4}
40 !10 = !{i32 2, !"Debug Info Version", i32 3}
41 !11 = !{!"clang version 3.9.0"}
42 !12 = !DILocation(line: 2, column: 20, scope: !4)
43 !13 = !DILocation(line: 2, column: 13, scope: !4)
44 !14 = !DILocation(line: 3, column: 20, scope: !8)
45 !15 = !DILocation(line: 3, column: 13, scope: !8)