mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 01:35:49 -04:00
6 lines
189 B
C++
6 lines
189 B
C++
// RUN: %clang_cc1 -x c++ -std=c++11 -triple x86_64-unknown-linux-gnu -fms-extensions -emit-llvm < %s | FileCheck %s
|
|
|
|
int foo() {
|
|
// CHECK: ret i32 1
|
|
return alignof(__unaligned int);
|
|
}
|