
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
13 lines
483 B
C
13 lines
483 B
C
// RUN: %clang_cc1 %s -triple i686-pc-win32 -fms-extensions -emit-llvm -o - | FileCheck %s
|
|
|
|
#pragma detect_mismatch("test", "1")
|
|
|
|
#define BAR "2"
|
|
#pragma detect_mismatch("test2", BAR)
|
|
|
|
// CHECK: !llvm.module.flags = !{{{.*}}}
|
|
// CHECK: !{{[0-9]+}} = !{i32 6, !"Linker Options", ![[link_opts:[0-9]+]]}
|
|
// CHECK: ![[link_opts]] = !{![[test:[0-9]+]], ![[test2:[0-9]+]]}
|
|
// CHECK: ![[test]] = !{!"/FAILIFMISMATCH:\22test=1\22"}
|
|
// CHECK: ![[test2]] = !{!"/FAILIFMISMATCH:\22test2=2\22"}
|