blob: 8ce3753c8cd71c43adc875ab2e4d14be65fa791b (
plain)
1
2
3
4
5
6
7
8
9
10
|
// RUN: %clang_cc1 -emit-llvm-only %s
namespace PR43080 {
int f(int i) { return sizeof i<i; }
}
namespace PR42861 {
const unsigned long s = alignof(int);
void foo() { alignas(s) int j; }
}
|