brintos

brintos / llvm-project-archived public Read only

0
0
Text · 286 B · 837d868 Raw
20 lines · cpp
1// RUN: %clang_cc1 -std=c++11 -triple x86_64-linux -emit-llvm -o - %s | FileCheck %s2 3void f()4{5  // CHECK: store i32 06  int i{};7}8 9 10namespace GH116440 {11void f() {12  void{};13  void();14}15 16// CHECK: define{{.*}} void @_ZN8GH1164401fEv()17// CHECK-NEXT: entry18// CHECK-NEXT: ret void19}20