mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-29 18:24:18 +00:00
1431c18b9d
* Move disassemble tests to compiletest * Fix problematic tests * Add newlines
11 lines
392 B
Rust
11 lines
392 B
Rust
// build-pass
|
|
// compile-flags: -C llvm-args=--disassemble-globals
|
|
// normalize-stderr-test "OpCapability VulkanMemoryModel\n" -> ""
|
|
// normalize-stderr-test "OpExtension .SPV_KHR_vulkan_memory_model.\n" -> ""
|
|
// normalize-stderr-test "OpMemoryModel Logical Vulkan" -> "OpMemoryModel Logical Simple"
|
|
|
|
use spirv_std as _;
|
|
|
|
#[spirv(fragment(entry_point_name = "hello_world"))]
|
|
pub fn main() {}
|