brintos

brintos / llvm-project-archived public Read only

0
0
Text · 189 B · 95549d3 Raw
7 lines · cpp
1// RUN: %clang_cc1 -x c++ -std=c++11 -triple x86_64-unknown-linux-gnu -fms-extensions -emit-llvm < %s | FileCheck %s2 3int foo() {4  // CHECK: ret i32 15  return alignof(__unaligned int);6}7